我的UIAlertController没有显示,但代码看起来是正确的。
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Lorem"
message:@"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sed ultrices nisl."
preferredStyle:UIAlertControllerStyleAlert];
[alertController addAction:[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil]];
[self presentViewController:alertController animated:YES completion:nil];
答案 0 :(得分:0)
回答我自己的问题是因为我在这方面浪费了一个小时,并且想要让别人头疼。
确保您没有从viewDidLoad调用此代码,如果您在viewController的早期需要它,则从viewWillAppear调用它。