首页 > 移动平台 > 详细

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

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

如图红色为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来横向滑动图片,自动产生偏移竖向的偏移 问题

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!