Prior to ARC I would declare IBOulets
in the header as follows:
- (IBOutlet) UIButton * aButton
@property (nonatomic, retain) IBOutlet UIButton * aButton;
Then in the .m file
@synthesize aButton;
What is the equivalent correct way of doing the above under arc ? Would I just declare :
@property (weak)IBOutlet UIButton * aButton ?
Thanks.