0

我正在创建一个 Master-Detail Splitview 应用程序,并且我UIAlertViewinsertNewObject方法中使用 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];
}
4

1 回答 1

1

您希望在该UIAlertViewDelegate方法中创建对象,alertView:clickedButtonAtIndex:因为(如您所见)显示警报的调用不会阻止该方法的其余部分执行。

此外,如果相关,您可能希望通过添加一个附加按钮让用户取消操作。

于 2012-07-17T02:13:56.337 回答