0

したがって、私は通常、この方法に従って、ビューの外側をタップしたときに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が閉じられます。これは私にとって間違った動作です..タップが完全にコントローラーの外側にある場合(ビュー領域+ナビゲーションバー領域)にコントローラーを閉じてほしいだけです..誰かが助けを提供できますか?

4

1 に答える 1

4

次のコードを更新します。

- (void)handleTapBehind:(UITapGestureRecognizer *)sender
{
    if (sender.state == UIGestureRecognizerStateEnded)
    {
        CGPoint flocation = [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.

        CGPoint tap = [self.view convertPoint:flocation fromView:self.view.window];
        CGPoint tapBar = [self.navigationController.navigationBar convertPoint:flocation fromView:self.view.window];
        if (![self.view pointInside:tap withEvent:nil] && ![self.navigationController.navigationBar pointInside:tapBar withEvent:nil])
        {
            // Remove the recognizer first so it's view.window is valid.
            [self.view.window removeGestureRecognizer:sender];
            [self dismissModalViewControllerAnimated:YES];
        }
    }
}

UIBarButtonItem をタップすると、ウィンドウから UITapGestureRecognizer を削除します

-(void)viewWillDisappear:(BOOL)animated {
    [self.view.window removeGestureRecognizer:self.tapOutsideGestureRecognizer];
}
于 2012-11-14T23:16:13.820 に答える