您好我使用以下函数调用带有特定消息的警报视图。 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];
}