gpt4 book ai didi

ios - UIAlertView 输入提示

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

<分区>

我需要在我的应用程序中输入提示,我已经尝试过了

// Create a new item
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"New item" message:@"Enter a name for the item" delegate:nil cancelButtonTitle:@"Cancel" otherButtonTitles:@"Add", nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
[alert show];

然后这样处理:

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
// The user created a new item, add it
if (buttonIndex == 1) {
// Get the input text
NSString *newItem = [[alertView textFieldAtIndex:0] text];
}
}

但看起来并没有调用 clickedButtonAtIndex,为什么?

亲切的问候,埃里克

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