给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
转载于:https://www.cnblogs.com/slc-lover/p/5861617.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/39239.html