开发者

accessing delaycontenttouches property of uiscrollview

开发者 https://www.devze.com 2023-02-07 03:23 出处:网络
Since uitableview inherits from uiscrollview, would i have access to the delayContentTouches property of UIScrollView from my table view controller?I thought I could do something like the following, b

Since uitableview inherits from uiscrollview, would i have access to the delayContentTouches property of UIScrollView from my table view controller? I thought I could do something like the following, but it doesn't work(self is t开发者_如何转开发he UITableViewController):

self.view.delayContentTouches = YES;

Thanks.


If the value of this property is YES, the scroll view delays handling the touch-down gesture until it can determine if scrolling is the intent. This value is YES by default. You'd better tell what do you want to do?

0

精彩评论

暂无评论...
验证码 换一张
取 消