|
3 |
edited tags
|
||
|
2 | fixed grammar | ||
|
I just started programming Objective-C and, having a background in Java, wonder how people writing Objective-C programs deal with private methods. I understand there may be several conventions and habits and think about this question as an aggregator of the best techniques people use dealing with private methods in Objective-C. Please , include an argument for your approach when posting it. Why is it good? Which drawbacks does it have (known to that you know of) and how you deal with them? As for my findings to this timeso far. It is possible to use categories [e.g. MyClass (Private)] defined in MyClass.m file to group private methods. This approach have has 2 issues:
The first issue can be workarounded worked around with empty category [e.g. MyClass ()]. |
||||
|
1 |
|
||
Best way to define private methods for a class in Objective-CI just started programming Objective-C and having background in Java wonder how people writing Objective-C programs deal with private methods. I understand there may be several conventions and habits and think about this question as an aggregator of best techniques people use dealing with private methods in Objective-C. Please, argument your approach when posting it. Why is it good? Which drawbacks does it have (known to you) and how you deal with them? As for my findings to this time. It is possible to use categories [e.g. MyClass (Private)] defined in MyClass.m file to group private methods. This approach have 2 issues:
The first issue can be workarounded with empty category [e.g. MyClass ()].
|
||||
|
Post Made Community Wiki by Community♦
|
||||
