show/hide this revision's text 3 edited tags
show/hide this revision's text 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:

  1. XCode (and compiler?) does not check if you define all methods in private category in corresponding @implementation block
  2. You have to put @interface declaring your private category in the begin of MyClass.m file, otherwise XCode complains smth like "self may not respond to message "privateFoo"

The first issue can be workarounded worked around with empty category [e.g. MyClass ()].
The second one bothers me a lot. I'd like to see private methods implemented (and defined) near the end of the file, ; I do not know if that that's possible.

show/hide this revision's text 1

Best way to define private methods for a class in Objective-C

I 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:

  1. XCode (and compiler?) does not check if you define all methods in private category in corresponding @implementation block
  2. You have to put @interface declaring your private category in the begin of MyClass.m file, otherwise XCode complains smth like "self may not respond to message "privateFoo"

The first issue can be workarounded with empty category [e.g. MyClass ()].
The second one bothers me a lot. I'd like to see private methods implemented (and defined) near the end of the file, do not know if that possible.

    Post Made Community Wiki by Community