Best way to define private methods for a class in Objective-C - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T01:30:38Zhttp://stackoverflow.com/feeds/question/172598http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/172598/best-way-to-define-private-methods-for-a-class-in-objective-c14Best way to define private methods for a class in Objective-CYurii Soldak2008-10-05T20:29:53Z2009-03-18T09:02:26Z
<p>I just started programming Objective-C and, having a background in Java, wonder how people writing Objective-C programs deal with private methods.</p>
<p>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. </p>
<p>Please include an argument for your approach when posting it. Why is it good? Which drawbacks does it have (that you know of) and how you deal with them?</p>
<p><hr/></p>
<p>As for my findings so far.</p>
<p>It is possible to use <a href="http://www.otierney.net/objective-c.html#categories" rel="nofollow">categories</a> [e.g. MyClass (Private)] defined in MyClass.m file to group private methods.</p>
<p>This approach has 2 issues:</p>
<ol>
<li>XCode (and compiler?) does not check if you define all methods in private category in corresponding @implementation block</li>
<li>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"</li>
</ol>
<p>The first issue can be worked around with <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Articles/chapter_4_section_5.html#//apple_ref/doc/uid/TP30001163-CH20-SW2" rel="nofollow">empty category</a> [e.g. MyClass ()].<br/>
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's possible.</p>
http://stackoverflow.com/questions/172598/best-way-to-define-private-methods-for-a-class-in-objective-c/172715#172715-2Answer by Giao for Best way to define private methods for a class in Objective-CGiao2008-10-05T21:43:12Z2008-10-05T21:43:12Z<p>With regards to issue #1, if you have @interface MyClass (Private) defined with a @implementation MyClass (Private), Xcode should warn about any missing implementations. With my projects, private categories has those categories implementation separate from the base implementation.</p>
<p>For example MyClass.m:</p>
<pre><code>@interface MyClass (Private)
- (void)doSomethingPrivate;
@end
@implementation MyClass (Private)
// not having this implemented will result in a warning
- (void)doSomethingPrivate {
}
@end
@implementation MyClass
// the public implementation
@end
</code></pre>
<p>I don't think there's anyway of getting around issue #2.</p>
http://stackoverflow.com/questions/172598/best-way-to-define-private-methods-for-a-class-in-objective-c/172738#1727380Answer by Andy for Best way to define private methods for a class in Objective-CAndy2008-10-05T22:03:16Z2008-10-05T22:03:16Z<p>While I am no Objective-C expert, I personally just define the method in the implementation of my class. Granted, it must be defined before (above) any methods calling it, but it definitely takes the least amount of work to do.</p>
http://stackoverflow.com/questions/172598/best-way-to-define-private-methods-for-a-class-in-objective-c/173287#1732878Answer by Graham Lee for Best way to define private methods for a class in Objective-CGraham Lee2008-10-06T05:49:46Z2009-03-18T09:02:26Z<p>There isn't really a "private method" in Objective-C, if the runtime can work out which implementation to use it will do it. But that's not to say that there aren't methods which aren't part of the documented interface. For those methods I think that a category is fine. Rather than putting the <code>@interface</code> at the top of the .m file like your point 2, I'd put it into its own .h file. A convention I follow (and have seen elsewhere, not sure if it's Apple convention) is to name such a file after its class and category with a + separating them, so <code>@interface GLObject (PrivateMethods)</code> can be found in <code>GLObject+PrivateMethods.h</code>. The reason for providing the header file is so that you can import it in your unit test classes :-).</p>
<p>By the way, as far as implementing/defining methods near the end of the .m file is concerned, you can do that with a category by implementing the category at the bottom of the .m file:</p>
<pre><code>@implementation GLObject(PrivateMethods)
- (void)secretFeature;
@end
</code></pre>
<p>or with a class continuation (the thing you call an "empty category"), just define those methods last. Of course to avoid compiler warnings they still need to be <em>declared</em> before any method which uses them.</p>
http://stackoverflow.com/questions/172598/best-way-to-define-private-methods-for-a-class-in-objective-c/651623#6516230Answer by Barry Wark for Best way to define private methods for a class in Objective-CBarry Wark2009-03-16T18:33:08Z2009-03-16T18:33:08Z<p>There's no way of getting around issue #2. That's just the way the C compiler (and hence the Objective-C compiler) work. If you use the XCode editor, the function popup should make it easy to navigate the <code>@interface</code> and <code>@implementation</code> blocks in the file.</p>
http://stackoverflow.com/questions/172598/best-way-to-define-private-methods-for-a-class-in-objective-c/651692#651692-1Answer by dreamlax for Best way to define private methods for a class in Objective-Cdreamlax2009-03-16T18:54:15Z2009-03-16T20:33:51Z<p>You could try defining a static function below or above your implementation that takes a pointer to your instance. It will be able to access any of your instances variables.</p>
<pre><code>//.h file
@interface MyClass : Object
{
int test;
}
- (void) someMethod: anArg;
@end
//.m file
@implementation MyClass
static void somePrivateMethod (MyClass *myClass, id anArg)
{
fprintf (stderr, "MyClass (%d) was passed %p", myClass->test, anArg);
}
- (void) someMethod: (id) anArg
{
somePrivateMethod (self, anArg);
}
@end
</code></pre>
http://stackoverflow.com/questions/172598/best-way-to-define-private-methods-for-a-class-in-objective-c/651852#65185214Answer by Alex for Best way to define private methods for a class in Objective-CAlex2009-03-16T19:37:02Z2009-03-16T19:37:02Z<p>There isn't, as others have already said, such a thing as a private method in Objective-C. However, starting in Objective-C 2.0 (meaning Mac OS X Leopard, iPhone OS 2.0, and later) you can create a category with an empty name (i.e. <code>@interface MyClass ()</code>). What's unique about the "empty name category" is that the method implementations can go in the same <code>@implementation MyClass</code> as the public methods. So I structure my classes like this:</p>
<p>In the .h file:</p>
<pre><code>@interface MyClass {
// My Instance Variables
}
- (void)myPublicMethod;
@end
</code></pre>
<p>And in the .m file:</p>
<pre><code>@interface MyClass()
- (void)myPrivateMethod;
@end
@implementation MyClass
- (void)myPublicMethod {
// Implementation goes here
}
- (void)myPrivateMethod {
// Implementation goes here
}
@end
</code></pre>
<p>I think the greatest advantage of this approach is that it allows you to group your method implementations by functionality, not by the (sometimes arbitrary) public/private distinction.</p>