Я работаю над ViewController с кодом (без раскадровки). Я пытаюсь добавить и AlertController
Я объявляю себя в .m
@property (nonatomic, strong) UIAlertController *alertController;
И init в loadview
метод
//alertviewController
_alertController = [[UIAlertController alloc]initWithNibName:nil bundle:nil];
И вызовите alertview в viewDidLoad
:
_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];
Я не знаю, почему предупреждение не появляется. Что-то не так с моим кодом. Как настроить программный вызов alertViewController
?