gpt4 book ai didi

ios - 从 xcode 中的另一个 View Controller 禁用按钮

转载 作者:行者123 更新时间:2023-11-29 13:25:37 24 4
gpt4 key购买 nike

我有一个动态初始化的按钮。我想从另一个 UIViewController 禁用该按钮。

我正在使用这段代码:

按钮是 @property (strong, nonatomic) IBOutlet UIButton *aboutus;

然后我尝试以这种方式禁用它:

OtherViewController * view2 = [[OtherViewController alloc]      initWithNibName:@"view2"    bundle:nil];
view2.aboutus.enabled=NO;

但按钮仍会启用..有什么想法吗?

最佳答案

你需要一个公共(public)的 BOOL 属性:

@property(nonatomic) buttonEnabled;

OtherViewController 上。将该值设置为您想要的任何值(是或否),然后在 viewDidLoad 中:

aboutus.enabled = buttonEnabled;

关于ios - 从 xcode 中的另一个 View Controller 禁用按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13204645/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com