万能弹窗,点击区域外消失

-(void)tapToCloseView:(UITapGestureRecognizer *)tap{

    CGPoint point = [tap locationInView:m_bgImageView];

    

    if(point.x < 0 || point.y < 0){

        [self dismiss];

    }else if(point.x > m_bgImageView.bounds.size.width || point.y > m_bgImageView.bounds.size.height){

        [self dismiss];

    }

}

 

posted @ 2017-01-16 16:33  lgx联盟  阅读(184)  评论(0编辑  收藏  举报