美文网首页IOS开发者学习笔记
为UIButton设置ExclusiveTouch属性

为UIButton设置ExclusiveTouch属性

作者: 瞬csr | 来源:发表于2017-09-29 09:46 被阅读52次

ExclusiveTouch的作用是:可以达到同一界面上多个控件接受事件时的排他性,从而避免bug。也就是说避免在一个界面上同时点击多个UIButton导致同时响应多个方法。

全局设置时可在AppDelegate启动应用时添加

  [[UIButton appearance] setExclusiveTouch:YES];

单个UIView内设置所有UIButton 的ExclusiveTouch属性时可用

 - (void)setExclusiveTouchForButtons:(UIView *)myView {

      for (UIView * v in [myView subviews]) {

            if([v isKindOfClass:[UIButton class]]) {

                  [((UIButton *)v) setExclusiveTouch:YES];

             }
             else if ([v isKindOfClass:[UIView class]]) {
                   [self setExclusiveTouchForButtons:v];
              }
       }
 }

注意:exclusiveTouch是UIView的属性,默认是NO;xcode9中API如下:

ExclusiveTouch.png

相关文章

网友评论

    本文标题:为UIButton设置ExclusiveTouch属性

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