iOS UIAlertView不止一次显示

时间:2015-05-23 19:13:26

标签: ios uialertview

您好我使用以下函数调用带有特定消息的警报视图。 NSLogs只打印一次,但警报视图被多次调用。

我正在使用UITabBarController获取任何其他信息。

- (void)showUIAlertWithMessage:(NSString *)message {
    NSLog(@"showUIAlertWithMessage called");
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Something went wrong!"
                                                    message:message
                                                   delegate:self
                                          cancelButtonTitle:@"Ok"
                                          otherButtonTitles:nil];
    [alert show];
}

0 个答案:

没有答案