作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
可能是一个简单的答案,
我怎样才能通过 textField.text
来自具有文本字段的 UIAlertView
到 -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
我试图创建一个属性 NSString 并使其等于 textField.text
并尝试 NSLog
它又回来了NULL
最佳答案
更新的答案
检索 UIAlertView
中文本字段的文本您可以使用 textFieldAtIndex:
方法。您根本不需要涉及文本字段委托(delegate)。
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
UITextField *textField = [alertView textFieldAtIndex:0]; // adjust the index if you have more than one text field.
NSLog(@"Text: %@", textField.text);
}
@property (nonatomic, weak) IBOutlet UITextField *textField;
UIAlertView
访问。委托(delegate)方法,假设委托(delegate)是引用文本字段的同一个对象:
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
NSLog(@"Text: %@", self.textField.text);
}
textFieldDidEndEditing:
获取它。委托(delegate)方法,首先创建一个属性来存储文本:
@property (nonatomic, copy) NSString *textFieldText;
- (void)textFieldDidEndEditing:(UITextField *)textField {
self.textFieldText = textField.text;
}
UIAlertView
中访问此属性委托(delegate)方法:
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
NSLog(@"Text: %@", self.textFieldText);
}
关于ios - 如何从 textFieldDidEndEditing 获取文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32946003/
我是一名优秀的程序员,十分优秀!