I am trying to test the UIAlertController in iOS 9 for my sample application, and during its launch I found a warning in the console. I am using Xcode 7 and Objective C.
Please find the following warning message in the console.
Warning: attempt to present <UIAlertController: 0x7fb1bb5be040> on <ViewController: 0x7fb1bb5aef30> whose view is not in the Hierarchy window!
See below for more information.
UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"My Alert" message:@"This is an alert." preferredStyle:UIAlertControllerStyleAlert]; UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {}]; [alert addAction:defaultAction]; [self presentViewController:alert animated:YES completion:nil];
source share