1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
int q; @interface MyClass () @property (nonatomic, weak) UIView someView; @property (nonatomic, weak) UIView anotherView; @end @implementation MyClass - (void)someKindOfFunction { some code; } - (void)anotherOfFunction { some code; } @end