成为 UITableView 的 UIScrollViewDelegate 委托
我有一个 UITableView 实例变量。我希望能够将我的视图控制器注册为我的 UITableViewController
的 UIScrollViewDelegate
。我已经尝试过
tableView.delegate = self;
但是当滚动时,我的方法
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView
willDecelerate:(BOOL)decelerate
不会被调用。有什么建议吗?
I have a UITableView
instance variable. I want to be able to register my view controller to be the UIScrollViewDelegate
for my UITableViewController
. I have already tried
tableView.delegate = self;
But when scrolling, my methods
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView
willDecelerate:(BOOL)decelerate
don't get called. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
现在
UITableViewDelegate
符合UIScrollViewDelegate
!(我写这个答案是因为很多人都会通过谷歌搜索找到这个页面..)
Now
UITableViewDelegate
conforms toUIScrollViewDelegate
!(I write this answer because many people are going to find this page googling..)
UITableViewDelegate
也将实现UIScrollViewDelegate
协议。UITableViewDelegate
will implementUIScrollViewDelegate
protocol also.这是官方不支持的。
UITableView
和UIWebView
不公开其内部管理的滚动视图。您可以深入到子视图层次结构并进行未记录的调用,但不建议这样做,因为它是官方禁止的,并且如果底层(未记录的)API 发生更改,则可能会在未来的操作系统版本中中断。
This is officially unsupported.
UITableView
andUIWebView
do not expose their internally managed scrollviews.You can descend into the subview hierarchy and make undocumented calls, but that's not recommended, as it's officially prohibited and can break under future OS versions if the underlying (undocumented) API changes.