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: 279
objective-c
|newbie
@interface SomeClass : NSObject
{
}
@end
@implementation SomeClass
-(void) awesomeMethod600
{
}
@end
No error, and awesomeMethod600 works.
© Stack Overflow or respective owner