gpt4 book ai didi

ios - 如何将选定的 UIActionSheet 按钮的标题放入标签中?

转载 作者:可可西里 更新时间:2023-11-01 03:38:06 25 4
gpt4 key购买 nike

我有一个带有一些选项的按钮。

- (IBAction)monstrarActionSheet:(id)sender {
UIActionSheet *action = [[UIActionSheet alloc] initWithTitle:@"Titulo"
delegate:self
cancelButtonTitle:@"Mejor no" destructiveButtonTitle:@"Que miedo" otherButtonTitles:@"Otro boton 1", @"Otro boton 2", nil];
[action showInView: self.view];

选择选项时,我在日志中显示一条消息以显示选择哪个按钮。

-(void) actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{
/*if(actionSheet.tag == 1){

}*/

NSLog(@"El usuario seleciono el boton %ld", (long)buttonIndex);
}

在我的 ViewController.h 中,我的按钮和标签是这样定义的

@interface ViewController : UIViewController <UIActionSheetDelegate>

@property (weak, nonatomic) IBOutlet UILabel *lbViewController1;

如何将选定的 UIActionSheet 按钮的标题放入我的 lbViewController1 标签中?

最佳答案

UIActionSheet 已被弃用,因此您应该使用 iOS 8.0+ 类型的 UIAlertController 操作表,但要使用当前代码回答您的问题,您可以设置您的包含按钮标题的标签,如下所示:

-(void) actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{
/*if(actionSheet.tag == 1){

}*/
NSLog(@"El usuario seleciono el boton %ld", (long)buttonIndex);
self.lbViewController1.text = [actionSheet buttonTitleAtIndex:buttonIndex];
}

关于ios - 如何将选定的 UIActionSheet 按钮的标题放入标签中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28574658/

25 4 0