我需要使用带有文本字段的 uialertview 以便将输入的文本传递给 Web 服务集成,而应用程序正在运行带有文本字段的警报视图,并且可以在文本字段中输入文本,但是在单击提交按钮时,相应的类已崩溃,但后退按钮和整个应用程序运行良好。
我用于带有文本字段的警报视图的代码,
{
//alertview with textfield
UIAlertView *message = [[UIAlertView alloc] initWithTitle:@"Enter your changes"
message:nil
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Submit Changes", nil];
[message setAlertViewStyle:UIAlertViewStylePlainTextInput];
[message show];
}
- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex
{
if (buttonIndex == 1)
{
text = [[alertView textFieldAtIndex:0] text];
NSLog(@"passed value %@",text);
}
}