UIScrollView无法响应touches的解决方法

简介: 自定义一个类继承UIScrollView,将touchesEnded事件发送出去。   #import @interface PageScrollView : UIScrollView { } @end #import "PageScrollView.

自定义一个类继承UIScrollView,将touchesEnded事件发送出去。

 

#import <Foundation/Foundation.h>


@interface PageScrollView : UIScrollView {

}

@end
#import "PageScrollView.h"


@implementation PageScrollView
- (void) touchesEnded: (NSSet *) touches withEvent: (UIEvent *) event {
	
	if (!self.dragging) {
		[self.nextResponder touchesEnded: touches withEvent:event]; 
	}		
	[super touchesEnded: touches withEvent: event];
}

@end

 

相关文章
|
6月前
|
移动开发 监控 JavaScript
WKWebView或UIWebView无法拦截的页面地址变更问题
WKWebView或UIWebView无法拦截的页面地址变更问题
66 1
|
运维 网络虚拟化
阿里云RPA中,控件超时
阿里云RPA中,控件超时
538 1
|
iOS开发
iOS开发 - 关于MJRefresh刷新崩溃的问题
iOS开发 - 关于MJRefresh刷新崩溃的问题
172 0
UIRefreshControl代码刷新
UIRefreshControl代码刷新
72 0
popupwindow showAsDropDown 无效解决方法
popupwindow showAsDropDown 无效解决方法
popupwindow showAsDropDown 无效解决方法
|
JSON 小程序 数据格式
小程序下拉刷新没有响应
小程序下拉刷新没有响应
294 0
|
网络协议 iOS开发
NSURLProtocol 拦截 NSURLSession 请求时body丢失问题解决方案探讨
“IP直连方案”主要在于解决DNS污染、省去DNS解析时间,通常情况下我们可以在项目中使用 NSURLProtocol 拦截 NSURLSession 请求,下面将支持 Post 请求中面临的一个挑战,以及应对策略介绍一下。
6518 0