IOS UIAlertViewController programmgesteuert erstellen

Ich arbeite an einem ViewController mit Code (kein Storyboard). Ich versuche hinzuzufügen und AlertController

Ich habe Propery in .m @ deklarie

@property (nonatomic, strong) UIAlertController *alertController;

Und init inloadview Method

//alertviewController
    _alertController = [[UIAlertController alloc]initWithNibName:nil bundle:nil];

Und rufe die Alarmansicht in @ aviewDidLoad:

_alertController = [UIAlertController alertControllerWithTitle:@"Error display content" message:@"Error connecting to server, no local database" preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
                LandingPageViewController *viewController = [[LandingPageViewController alloc] initWithNibName:nil bundle:nil];
    //            viewController.showNavBarBackButton = YES;
                [[AppDelegate sharedAppDelegate].rootViewController cPushViewController:viewController];
}];
[_alertController addAction:ok];
[self presentViewController:_alertController animated:YES completion:nil];

Ich weiß nicht, warum die Warnung nicht angezeigt wird. Irgendwas stimmt mit meinem Code nicht. Wie man @ einrichtet und anrualertViewController programmatisch

Antworten auf die Frage(8)

Ihre Antwort auf die Frage