UITableView水平滚动指示器
我在导航控制器内有一个表格视图,这是选项卡栏的一个视图。
每次启动应用程序时,当我选择此选项卡时,水平滚动指示器会短暂闪烁。
这是否与所选的初始选项卡有关,该选项卡包含滚动视图?
我的印象是表格视图无法水平滚动?
它似乎不会影响应用程序,只是烦人而已。
I have a table view inside a navigation controller, which is one view for a tab bar.
Everytime I launch the app, the horizontal scroll indicator flashes briefly when i select this tab.
Could this be related to the initial tab selected, which does contain a scrollview?
I was under the impression that table views couldn't scroll horizontally?
It doesnt seem to affect the app, just annoying thats all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否在视图中进行编程滚动?
我们在我们的一个应用程序中特意进行了这种闪烁,使用一些代码来设置启用动画的新滚动位置 (0)。
编辑:还有一种方法: UIScrollView 中的 flashScrollIndicators (UITableView 也是 UIScrollView)。
Do you do programmatic scrolling in your view?
We did this flashing on purpose in one of our apps, using some code to set a new scroll position (0) with animation enabled.
EDIT: There is also the method: flashScrollIndicators in UIScrollView (a UITableView also being a UIScrollView).