码迷,mamicode.com
首页 > 其他好文 > 详细

关于tableView点击状态栏列表回到顶部的说明

时间:2014-12-02 17:16:58      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:style   ar   color   os   sp   on   bs   ad   ef   

这是tableView继承的scrollView的一个属性  scrollsToTop。

官方说明是这样的:

// When the user taps the status bar, the scroll view beneath the touch which is closest to the status bar will be scrolled to top, but only if its `scrollsToTop` property is YES, its delegate does not return NO from `shouldScrollViewScrollToTop`, and it is not already at the top.

// On iPhone, we execute this gesture only if there‘s one on-screen scroll view with `scrollsToTop` == YES. If more than one is found, none will be scrolled.

@property(nonatomic) BOOL  scrollsToTop;          // default is YES.


想要实现此功能需要满足以下条件:

1.屏幕中只有一个scrollView或tableView。

2.它的scrollsToTop属性设置为YES,默认为YES。


想要禁用掉此功能将scrollsToTop属性设置为NO即可。

关于tableView点击状态栏列表回到顶部的说明

标签:style   ar   color   os   sp   on   bs   ad   ef   

原文地址:http://blog.csdn.net/miaocuilin/article/details/41681077

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!