在 ARC 之前,我会IBOulets
在标题中声明如下:
- (IBOutlet) UIButton * aButton
@property (nonatomic, retain) IBOutlet UIButton * aButton;
然后在 .m 文件中
@synthesize aButton;
在 arc 下执行上述操作的等效正确方法是什么?我可以声明:
@property (weak)IBOutlet UIButton * aButton ?
谢谢。
在 ARC 之前,我会IBOulets
在标题中声明如下:
- (IBOutlet) UIButton * aButton
@property (nonatomic, retain) IBOutlet UIButton * aButton;
然后在 .m 文件中
@synthesize aButton;
在 arc 下执行上述操作的等效正确方法是什么?我可以声明:
@property (weak)IBOutlet UIButton * aButton ?
谢谢。
@property (strong)IBOutlet UIButton *aButton
在某些情况下,您可能希望改变强/弱属性。看看:在 ARC 下,IBOutlets 应该强还是弱?