标签:
因为在加载视图的时候根据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