我似乎遇到了类似于未解决的问题中的问题:
UIAlertController dismissing his presentingViewController
我在普通的UIViewController上呈现一个模态视图控制器.然后我在该模态视图控制器上弹出警报.当我按“ok”关闭警报(使用下面的代码生成)时,模态视图控制器也被解除.
UIAlertAction *ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action{ [self dismissViewControllerAnimated: YES completion: nil];}]; UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Sign up problem." message:@"Some fields are empty. Please check your inputs and try again." preferredStyle:UIAlertControllerStyleAlert]; [alert addAction:ok]; [self presentViewController:alert animated:YES completion:nil];
我该如何解除警报?
我意识到我可以通过使用导航控制器类型设置而隐藏导航栏来避免这个问题,所以我得到了与模态视图控制器相同的感觉,但这看起来很傻.谢谢.