gpt4 book ai didi

iphone - 从 UIAlertView 检索输入文本

转载 作者:行者123 更新时间:2023-11-29 04:32:55 24 4
gpt4 key购买 nike

在 Xcode 4.3 3 中,我创建了一个按钮,该按钮生成一个弹出输入框(按钮“取消”和“输入”),工作正常,如何检索输入的数据并将其显示在标签或表格中?

这是我的按钮背后的代码的样子。

- (IBAction)car:(UIButton *) sender

NSString * title1 = [sender titleForState:UIControlStateNormal];

_mylabel.text = title1;

UIAlertView *prompt = [[UIAlertView alloc] initWithTitle:@"Expense Amount in $:"
message:@"\n\n"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Enter", nil];


_textField = [[UITextField alloc] initWithFrame:CGRectMake(12, 50, 260, 25)];

[_textField setBackgroundColor:[UIColor whiteColor]];

[_textField setPlaceholder:@"Amount"];

[prompt addSubview:_textField];

_textField.keyboardType = UIKeyboardTypeNumberPad;


// show the dialog box
[prompt show];

// set cursor and show keyboard
[_textField becomeFirstResponder];


}

感谢您的帮助。

最佳答案

正如 iOS 5 中所介绍的,您应该使用 UIAlertViewStylePlainTextInput 样式。您将在委托(delegate)方法中获得正确的值。不要再使用自定义文本字段。

关于iphone - 从 UIAlertView 检索输入文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11461221/

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