码迷,mamicode.com
首页 > 移动开发 > 详细

ios7中使用scrollview来横向滑动图片,自动产生偏移竖向的偏移 问题

时间:2014-08-01 16:07:31      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   使用   os   strong   io   2014   

如图红色为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 to NO 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)


ios7中使用scrollview来横向滑动图片,自动产生偏移竖向的偏移 问题,布布扣,bubuko.com

ios7中使用scrollview来横向滑动图片,自动产生偏移竖向的偏移 问题

标签:des   style   blog   使用   os   strong   io   2014   

原文地址:http://blog.csdn.net/xiaoyuertongxue/article/details/38336767

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