如何判断 TTTableViewController 何时滚动
我正在使用 Three20 的 TTTableViewController,我想知道用户何时滚动表视图。使用常规的 UITableViewController,我可以监听scrollViewDidScroll:。我怎样才能在 TTTableViewController 中做到这一点?
I'm using Three20's TTTableViewController and I'd like to know when the user scrolls the table view. With a regular UITableViewController I can just listen in on scrollViewDidScroll:. How can I do this in a TTTableViewController?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需重写 TTTableViewController 中的两个方法
didBeginDragging
和didEndDragging
即可。Just overrides two methods
didBeginDragging
anddidEndDragging
in your TTTableViewController.