2015-02-23 69 views
0

我的UIAlertController未顯示,但代碼看起來正確。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

只是回答我的問題,因爲我失去了對這個一小時,並希望其他節省的人頭痛。

確保你沒有從viewDidLoad調用這段代碼,如果你在viewController的早期需要它,然後從viewWillAppear調用它。