O IOS cria UIAlertViewController programaticamente

Estou trabalhando em um ViewController com código (sem storyboard). Estou tentando adicionar e AlertController

Declaro propriedade em .m

@property (nonatomic, strong) UIAlertController *alertController;

E iniciar emloadview método

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

E chame a visualização de alerta emviewDidLoad:

_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];

Não sei por que o alerta não está aparecendo. Alguma coisa errada com o meu código. Como configurar e ligaralertViewController programaticamente?

questionAnswers(4)

yourAnswerToTheQuestion