IBOulets
ARCの前は、ヘッダーで次のように宣言していました。
- (IBOutlet) UIButton * aButton
@property (nonatomic, retain) IBOutlet UIButton * aButton;
次に、.mファイルで
@synthesize aButton;
アークの下で上記を行うための同等の正しい方法は何ですか?私はただ宣言しますか:
@property (weak)IBOutlet UIButton * aButton ?
ありがとう。