出现情况:
同一个界面有多个 可触控控件(button、cell、自定义控制器)
以跳转页面为例,同时点击多个控件,此时页面也会连续跳转多个。
解决方法:
//创建button的时候
[self.button setExclusiveTouch:YES];
//自定义控件的时候
-(instancetype)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
if (self) {
[self setExclusiveTouch:YES];
[self layoutSetting];
}
return self;
}