此问题仅发生在iPhone 5上,无论iOS版本如何。
从记录过程中我可以看到viewWillAppear方法是第一次被调用而不是第二次被调用。
FirstViewController
- (void)presentView {
SecondViewController *secondViewController = [[SecondViewController alloc] init];
secondViewController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentViewController:secondViewController animated:YES completion:nil];
}
SecondViewController
- (void)dismissView {
[self.presentingViewController dismissViewControllerAnimated:YES completion:nil];
}