美文网首页
关于UIAlertController点击背景的地方消失

关于UIAlertController点击背景的地方消失

作者: 今年27 | 来源:发表于2018-05-18 16:05 被阅读8次

写一个YQSAlertController继承于UIAlertController

- (void)viewDidAppear:(BOOL)animated {

    [superviewDidAppear:animated];

    UIView*superView =self.view.superview;

    UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(closeAlert:)];

    if(![superView.gestureRecognizerscontainsObject:tap]) {

        [superViewaddGestureRecognizer:tap];

        superView.userInteractionEnabled = YES;

    }

}

- (void)closeAlert:(UITapGestureRecognizer*) gesture{

    [self dismissViewControllerAnimated:YES completion:nil];

}

相关文章

网友评论

      本文标题:关于UIAlertController点击背景的地方消失

      本文链接:https://www.haomeiwen.com/subject/xnmgdftx.html