美文网首页iOS
iOS UITap 禁止传播到其他控件

iOS UITap 禁止传播到其他控件

作者: 透支未来 | 来源:发表于2016-11-25 10:44 被阅读41次
    UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(keyboardHide:)];
        //设置成NO表示当前控件响应后会传播到其他控件上,默认为YES。
        tapGestureRecognizer.cancelsTouchesInView = NO;
        //将触摸事件添加到当前view
    
    

    相关文章

      网友评论

        本文标题:iOS UITap 禁止传播到其他控件

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