hit counter

Timeline

My development logbook

Category vs Class Extension

Category does not allow addition of ivar.

The restriction does not apply to class extension.

That’s why I can do something like this:

1
2
3
4
5
@interface SOViewController ()
@property (weak, nonatomic) IBOutlet UIPickerView *Picker1;
@property (weak, nonatomic) IBOutlet UIPickerView *Picker2;

@end