我正在创建一个 Master-Detail Splitview 应用程序,并且我UIAlertView
在insertNewObject
方法中使用 a 让用户为添加到主视图的新对象定义一个标题。我已经使用了 Warkst 的这个问题linky的代码和指南。
我的问题是,当调用警报视图时,insertNewObject 函数的其余部分会继续运行,因此会创建一个带有空白标题的新对象,因为它在 AlertView 甚至有机会出现之前就完成了运行。
我正在使用的代码如下,第一个方法是insertNewObject
,第二个是按下按钮时 AlertView 调用的方法。newTitle
是一个全局变量。
- (void)insertNewObject:(id)sender
{
//Make sure clear before we start, also make sure initalized (double redundancy with clear statement at end)
newTitle = @"";
//New Title pop up UIAlert View
UIAlertView * alert = [[UIAlertView alloc]
initWithTitle:@"New Object"
message:@"Please enter a name for object"
delegate:self
cancelButtonTitle:@"Create"
otherButtonTitles:nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
UITextField * alertTextField = [alert textFieldAtIndex:0];
alertTextField.keyboardType = UIKeyboardTypeDefault;
alertTextField.placeholder = @"Enter a new title";
[alert show];
//Create and enter new object.
if (!_objects)
{
_objects = [[NSMutableArray alloc] init];
}
[_objects insertObject:newTitle atIndex:0];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
//Clear newTitle for use next time
newTitle = @"";
}
UIAlertView 按钮点击方法
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
newTitle = [[alertView textFieldAtIndex:0] text];
}