我已在
中以编程方式创建了自定义按钮 - (void)viewDidLoad
但是我需要在
中调用其中一个方法 -(void) viewDidAppear:(BOOL)animated
我需要致电
[self.custom setHidden:YES]
按钮范围仅在viewDidLoad
?
答案 0 :(得分:0)
假设您正在使用ARC:
将其定义为班级中的属性:
@property (nonantomic, strong) UIButton *myButton;
并将其分配给viewDidLoad中的该属性:
UIButton *myBtn = [[UIButton alloc] init];
self.myButton = myBtn;
...