したがって、私は通常、この方法に従って、ビューの外側をタップしたときにModalViewControllerを閉じます。
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
if(UIUserInterfaceIdiomPad == UI_USER_INTERFACE_IDIOM())
{
if(![self.view.window.gestureRecognizers containsObject:recognizer])
{
recognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapBehind:)];
[recognizer setNumberOfTapsRequired:1];
recognizer.cancelsTouchesInView = NO; //So the user can still interact with controls in the modal view
[self.view.window addGestureRecognizer:recognizer];
[recognizer release];
}
}
}
- (void)handleTapBehind:(UITapGestureRecognizer *)sender
{
if (sender.state == UIGestureRecognizerStateEnded)
{
CGPoint location = [sender locationInView:nil]; //Passing nil gives us coordinates in the window
//Then we convert the tap's location into the local view's coordinate system, and test to see if it's in or outside. If outside, dismiss the view.
if (![self.view pointInside:[self.view convertPoint:location fromView:self.view.window] withEvent:nil])
{
[self dismissModalViewControllerAnimated:YES];
[self.view.window removeGestureRecognizer:recognizer];
}
}
}
通常のModalViewControllerでうまく機能しますが、これで、ルートとして「x」viewControllerを持つNavigationViewControllerであるmodelViewControllerができました。この方法を使用してnavigationBarをタップすると、コントローラーが閉じられます。 xコントローラーからy"コントローラーを取得し、戻りたい場合も、戻るボタンをクリックすると、ModalViewが閉じられます。これは私にとって間違った動作です..タップが完全にコントローラーの外側にある場合(ビュー領域+ナビゲーションバー領域)にコントローラーを閉じてほしいだけです..誰かが助けを提供できますか?