gpt4 book ai didi

ios - 从ActionSheet移除红色破坏性按钮

转载 作者:行者123 更新时间:2023-12-01 17:19:37 24 4
gpt4 key购买 nike

我正在尝试弹出一个没有破坏性按钮的操作表。如果我只是尝试从下面的代码中删除破坏性按钮,则会收到错误消息:UIActionSheet没有可见的界面。有人知道为什么会这样吗?如何删除红色的破坏性按钮?谢谢!

UIActionSheet *popupQuery = [[UIActionSheet alloc] initWithTitle:@"Title" 
delegate:self cancelButtonTitle:@"Cancel Button" destructiveButtonTitle:@"Destructive
Button" otherButtonTitles:@"Other Button 1", @"Other Button 2", nil];

最佳答案

只需将nil作为destructiveButtonTitle 传递即可。

只需尝试以下代码:

UIActionSheet *popupQuery = [[UIActionSheet alloc] initWithTitle:@"Title" delegate:self cancelButtonTitle:@"Cancel Button" destructiveButtonTitle:nil otherButtonTitles:@"Other Button 1", @"Other Button 2", nil];

关于ios - 从ActionSheet移除红色破坏性按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14660480/

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