UIScrollView 与 touchesBegan 冲突解决方法
Posted 玩也是种气质
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIScrollView 与 touchesBegan 冲突解决方法相关的知识,希望对你有一定的参考价值。
给UIScrollView写一个延展
.h文件实现:
@interface UIScrollView (NSFoundation)
@end
.m文件实现
@implementation UIScrollView (ScrollTouch)
//重写touchesBegin方法
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
//主要代码实现:
[[self nextResponder] touchesBegan:touches withEvent:event];
//super调用,别漏
[super touchesBegan:touches withEvent:event];
}
//重写touchesEnded方法
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
[[self nextResponder] touchesEnded:touches withEvent:event];
[super touchesEnded:touches withEvent:event];
}
//重写touchesMoved方法
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
[[self nextResponder] touchesMoved:touches withEvent:event];
[super touchesMoved:touches withEvent:event];
}
@end
以上是关于UIScrollView 与 touchesBegan 冲突解决方法的主要内容,如果未能解决你的问题,请参考以下文章
UIScrollView SetContentSize 与自动布局
如何使 UIButton 与 UIScrollView 一起移动
UIScrollView 与 UINavigationBar 的动态大小