我有一个动态初始化的按钮。我想从另一个 UIViewController 禁用该按钮。
我正在使用这段代码:
按钮是@property (strong, nonatomic) IBOutlet UIButton *aboutus;
然后我尝试以这种方式禁用它:
OtherViewController * view2 = [[OtherViewController alloc] initWithNibName:@"view2" bundle:nil];
view2.aboutus.enabled=NO;
但该按钮仍将启用..任何想法为什么?