在 控件所在视图控制器 设置属性
在iOS7之后的系统里有滚动视图的时候,比如UITableView,UIScrollView, UICollectionView的时候有时候会偏移20像素。
我们可以判断一下系统再进行设置
if ([[UIDevice currentDevice] systemVersion].floatValue>=7.0)
{
self.automaticallyAdjustsScrollViewInsets = NO;
}
在 控件所在视图控制器 设置属性
在iOS7之后的系统里有滚动视图的时候,比如UITableView,UIScrollView, UICollectionView的时候有时候会偏移20像素。
我们可以判断一下系统再进行设置
if ([[UIDevice currentDevice] systemVersion].floatValue>=7.0)
{
self.automaticallyAdjustsScrollViewInsets = NO;
}