gpt4 book ai didi

ios - UIAlertView 灰色按钮

转载 作者:行者123 更新时间:2023-11-29 03:43:34 24 4
gpt4 key购买 nike

我有一个带有多个按钮的 UIAlertView。是否可以将按钮变灰并禁用?我希望按钮可见,但清楚表明它无法按下。如有任何建议,我们将不胜感激。

最佳答案

确保您已启用当前 VC 来实现 <UIAlertViewDelegate>协议(protocol),然后在您的 VC 中您可以执行以下操作:

- (void)viewDidAppear:(BOOL)animated {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert!" message:@"This is an alert view" delegate:nil cancelButtonTitle:@"Cancel!" otherButtonTitles:@"Off", @"On", nil];
alert.delegate = self;
[alert show];
}


/* UIAlertViewDelegate methods */
- (BOOL)alertViewShouldEnableFirstOtherButton:(UIAlertView *)alertView {
return NO;
}

// Other UIAlertViewDelegate methods...

现在为什么你想要显示一个带有没有任何功能的按钮的 UIAlertView 是一个完全不同的问题......:)

关于ios - UIAlertView 灰色按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18028692/

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