首页 > 代码库 > ios7中使用scrollview来横向滑动图片,自动产生偏移竖向的偏移 问题
ios7中使用scrollview来横向滑动图片,自动产生偏移竖向的偏移 问题
如图红色为scrollview的背景色,在scrollview上加了图片之后,总会有向下的偏移
设置contentOffset也不管用
在ios7中controller有个
automaticallyAdjustsScrollViewInsets属性,默认为YES
if (iOS7&&[self respondsToSelector:@selector(automaticallyAdjustsScrollViewInsets)]) { self.automaticallyAdjustsScrollViewInsets = NO; }
@property(nonatomic, assign) BOOL automaticallyAdjustsScrollViewInsets | |
Description | Specifies whether or not the view controller should automatically adjust its scroll view insets. |
Default value is YES, which allows the view controller to adjust its scroll view insets in response to the screen areas consumed by the status bar, navigation bar, and toolbar or tab bar. Set toNO if you want to manage scroll view inset adjustments yourself, such as when there is more than one scroll view in the view hierarchy. | |
Availability | iOS (7.0 and later) |
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。