@interface MyClass(){ NSInteger aInt; } @property(nonatomic,strong) NSString *name; @end
- expansion
with modern compilers, this is a great way to decrale methods, ivars, and properties for private use only in the MyClass class.
Class extensions must be declared in the main implementation file (not in the category).
This way you can hide implementation details from the header file, they are private.
vikingosegundo
source share