2

试图实现一个UITapGestureRecognizer表单模式视图控制器。如果用户在表单之外触摸,表单应该关闭,这样代码就可以正常工作。

问题是如果我手动关闭表单并尝试触摸任何观点,它仍然会尝试调用UITapGestureRecognizer方法和应用程序崩溃。

Error ::
    -[xxxxView handleTapBehind:]: message sent to deallocated instance



-(void)done
{
    [self.navigationController popViewControllerAnimated:YES];
        //send notification that folder has been created
        [[NSNotificationCenter defaultCenter] postNotificationName:@"refreshDetails" object:nil];
}
-(void)viewDidAppear:(BOOL)animated
{
    // gesture recognizer to cancel screen
    UITapGestureRecognizer *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];

}

- (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])
        {
            // Remove the recognizer first so it's view.window is valid.
            [self.view.window removeGestureRecognizer:sender];
            [self dismissModalViewControllerAnimated:YES];
        }
    }
}

为什么handleTapBehind:在我关闭视图控制器后仍然调用?我怎样才能解决这个问题?

4

3 回答 3

4

您将手势识别器添加到窗口:

[self.view.window addGestureRecognizer:recognizer];

并将目标设置为您的控制器;

因此,当您的控制器关闭时 - 它已被释放,但手势识别器仍然存在。当它触发时,它会尝试向您的控制器发送操作,而该控制器已经不存在。

因此,您应该将识别器添加到控制器的视图或在 viewWillDissaper 方法中将其删除。

于 2013-01-29T17:10:44.413 回答
0

尝试使用手势识别器的委托方法,当您手动关闭 vc 并在 shouldReceiveTouch 中放置一个标志:

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch
{
   if(flag)
   {
      return NO;
   }
   return YES;
}

不要忘记将委托设置为当前视图控制器。您现在也可以删除行 [self.view.window removeGestureRecognizer:sender];

于 2013-01-29T17:11:03.133 回答
0

我想从@mikhail 的回答中添加代码

 (UITapGestureRecognizer *)senderTap

-(void)viewWillDisappear:(BOOL)animated{

     [self.view.window removeGestureRecognizer:senderTap];
}

在我的代码中,当调用 ViewDidAppear 时,我在选择器方法中捕获 UITapGestureRecognizer (sender)。

于 2013-10-21T10:58:29.597 回答