gpt4 book ai didi

xcode4 - 添加不带取消按钮的 UIActionSheet

转载 作者:行者123 更新时间:2023-12-02 09:32:53 26 4
gpt4 key购买 nike

我想使用 UIActionSheet 来允许用户选择我的 iPhone 应用程序的两种模式之一。所以我不需要显示取消按钮。我只是想问他是否想选择模式一还是模式二。我尝试不添加它,但它不允许我添加,那么我该怎么做呢?

注意:我不想使用警报。

我使用此代码添加 UIActionSheet:

UIActionSheet *mySheet = [[UIActionSheet alloc] initWithTitle:@"choose one" delegate:nil cancelButtonTitle:@"tasks" destructiveButtonTitle:@"appointments" otherButtonTitles:nil];


[mySheet showInView:self.view];

最佳答案

尝试:

UIActionSheet *actionSheet = [[UIActionSheet alloc]initWithTitle:@"Share" delegate:self cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles:@"Mode 1",@"Mode 2", nil];
[actionSheet showInView:self.view];

只需将 cancelButtonTitle 设置为 nil

关于xcode4 - 添加不带取消按钮的 UIActionSheet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18283424/

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