我有一个具有以下方法的视图控制器:
- (IBAction)pickLocation:(id)sender{
SearchLocationPickerViewController *modalView = [[[SearchLocationPickerViewController alloc] init] autorelease];
[modalView setModalTransitionStyle:UIModalTransitionStylePartialCurl];
modalView.searchVC = self;
[self presentModalViewController:modalView animated:YES];
}
这过渡非常好,并按预期显示模态视图控制器。但是,当我使用以下命令关闭模式视图时(从模式视图控制器执行):
- (IBAction)closeLocationPick:(id)sender{
[self dismissModalViewControllerAnimated:YES];
}
模态视图按预期过渡,但在过渡结束时,显示会很快闪烁SOMETIMES。它显示了仅显示几分之一秒的模态视图。仅在显示/隐藏模态视图的十分之三的情况下才会发生这种情况。
关于可能导致这种情况的任何想法?