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

scrollView 在viewdidload 设置了contentsize之后无法滚动解决方法

时间:2016-05-15 16:37:10      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

因为在加载视图的时候根据xib的大小修改了contentsize

所以要在以下方法设置,即在视图已经出现的时候再设置一次

-(void)viewDidAppear:(BOOL)animated

{

    [super viewDidAppear:animated];

    contentScroll.contentSize = CGSizeMake(0, CGRectGetMaxY(friendView.frame));

}

 

scrollView 在viewdidload 设置了contentsize之后无法滚动解决方法

标签:

原文地址:http://www.cnblogs.com/yujunma/p/5495331.html

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