Objective C class definition confusion - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T00:22:41Zhttp://stackoverflow.com/feeds/question/689775http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/689775/objective-c-class-definition-confusion4Objective C class definition confusiongargantaun2009-03-27T13:32:56Z2009-06-13T06:44:07Z
<p>I'm learning Objective-C through Cocoa (And loving it). I'm following a tutorial. Theres a class called Menu and the interface looks something like this. </p>
<pre><code>@interface Menu: MenuObject {}
@end
@interface MenuLayer : LayerObject {}
-(void) someMethod:(id)sender
-(void) someOtherMethod:(id)sender
@end
</code></pre>
<p>and the implementations follow the same convention</p>
<pre><code>@implementation Menu
-(id)init{
// blah blah blah
}
@end
@implementation MenuLayer
// init, someMethod and someOtherMethod stuff here
@end
</code></pre>
<p>Which to me looks like two separate object/classes being defined and implemented in the same files. Is there a reason for doing this? Would the result be the same if I split the .h and .m files up into Menu.h/.m and MenuLayer.h/.m ? Or am I misunderstanding something fundamental?</p>
http://stackoverflow.com/questions/689775/objective-c-class-definition-confusion/689815#6898154Answer by Eric Petroelje for Objective C class definition confusionEric Petroelje2009-03-27T13:44:53Z2009-03-27T13:44:53Z<p>It should be fine if you split those into separate files. Most of the time when you see things implemented that way it's just because the 2 classes are so tightly coupled together that you would really never use one without the other.</p>
<p>So, it's really just a style thing. There's no "magic" to the fact that they are both defined and implemented in the same file.</p>
http://stackoverflow.com/questions/689775/objective-c-class-definition-confusion/689824#6898242Answer by Brian Campbell for Objective C class definition confusionBrian Campbell2009-03-27T13:46:40Z2009-03-27T13:46:40Z<p>This is just a matter of personal preference. You should be able to split them up, as long as you <code>#import</code> one of the headers from the other if necessary. Objective-C just gives you the choice to group classes together in files, rather than Java which forces you to split them up. If the classes are closely related, it can be easier to see how the whole thing works all in one file, instead of having to switch between several.</p>
http://stackoverflow.com/questions/689775/objective-c-class-definition-confusion/689828#6898281Answer by eJames for Objective C class definition confusioneJames2009-03-27T13:47:33Z2009-03-27T13:47:33Z<p>Your assessment is correct. Two separate classes are being declared and defined.</p>
<p>The likely reason for doing this is that both classes are required in order to do whatever it is that <code>Menu</code> does. Having both classes in the same header and source just makes the interface more compact.</p>
<p>Splitting it up into two files would still work.</p>