码迷,mamicode.com
首页 > 其他好文 > 详细

FormSheet式模态视图,点击模态视图外隐藏模态视图的方法

时间:2015-07-16 14:02:45      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];

    _tapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:selfaction:@selector(handleTapBehind:)];
    [_tapRecognizer setNumberOfTapsRequired:1];
    _tapRecognizer.cancelsTouchesInView = NO; 
    [self.view.window addGestureRecognizer:_tapRecognizer];
    [_tapRecognizer setDelegate:(id<UIGestureRecognizerDelegate>)self];
}

- (void)handleTapBehind:(UITapGestureRecognizer *)sender
{

    if (sender.state == UIGestureRecognizerStateEnded) {
     
        CGPoint location = [sender locationInView:nil];      

        if (UIDevice currentDevice]systemVersion] floatValue] < 8.0) {

            if (UIInterfaceOrientationIsLandscape([UIApplicationsharedApplication].statusBarOrientation)) {

                location = CGPointMake(location.y, location.x);
            }
        }       

        if (![self.view pointInside:[self.view convertPoint:location fromView:self.view.window] withEvent:nil]) {
        
            [self.view.window removeGestureRecognizer:sender];
            [self dismissViewControllerAnimated:YES completion:nil];
        }
    }
}

#pragma mark - UIGestureRecognizer Delegate

- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer
{
    return YES;
}

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer*)otherGestureRecognizer
{
    return YES;
}

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

 

FormSheet式模态视图,点击模态视图外隐藏模态视图的方法

标签:

原文地址:http://www.cnblogs.com/liuliuliu/p/4650950.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!