Why am I allowed to write and use methods in an implementation that aren't declared in the header fi

Posted by Halpanger900 on Stack Overflow See other posts from Stack Overflow or by Halpanger900
Published on 2010-04-09T21:57:20Z Indexed on 2010/04/09 22:03 UTC
Read the original article Hit count: 257

Filed under:
|
@interface SomeClass : NSObject
{
}
@end

@implementation SomeClass
-(void) awesomeMethod600
{
}
@end

No error, and awesomeMethod600 works.

© Stack Overflow or respective owner

Related posts about objective-c

Related posts about newbie