UIAlertView不适用于UIBarButton

时间:2014-06-29 12:44:31

标签: objective-c uialertview uibarbuttonitem

我有一个奇怪的问题: 尝试使用NSLog中的UIAlert来调用包含UIBarButtonItemNavigationController的操作。 NSLog打印UIAlert不会出现......

-(void)addNewItem
{
    UIAlertView *alertAddnewItem = [[UIAlertView alloc]initWithTitle:@"Hello!" message:@"hello!" delegate:self cancelButtonTitle:@"NO" otherButtonTitles:@"YES", nil];
    [self.view addSubview:alertAddnewItem];

    NSLog(@"Hello!");
}

我猜问题出在[self.view addSubview:alertAddnewItem];

谢谢!

1 个答案:

答案 0 :(得分:0)

呼叫:

[alertAddnewItem show];

[self.view addSubview:alertAddnewItem];