UITableView delegate action when tableView is scrolled?(滚动tableView时的UITableView委托动作?)
问题描述
是否有 UITableView 委托操作在 tableView 滚动时运行?
Is there a UITableView delegate-action that runs when the tableView is being scrolled?
这可能真的很容易,但我找不到.
This is probably really easy, but I can't find it.
谢谢你:)
推荐答案
UITableView 是UIScrollView 的子类,table 的delegate 也可以作为scroll view 的delegate.因此,您可以将 UIScrollViewDelegate 中的所有方法用于您的表(在表的委托中实现它们),例如
UITableView is a subclass of UIScrollView and table's delegate can also act as a scroll view's delegate. So you can use all methods from UIScrollViewDelegate for your table (implementing them in table's delegate), e.g.
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
(在这种情况下,scrollView 参数将是指向您的 tableview 的指针)
(scrollView parameter in this case will be pointer to your tableview)
这篇关于滚动tableView时的UITableView委托动作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:滚动tableView时的UITableView委托动作?
基础教程推荐
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
