写一个页面的时候,遇到了页面加载时候collectionView的最下面少了49个像素的位置,切换去别的页面之后,再返回,又变回正常,多方求解无果后,发现原来是系统自带的适应功能导致的,加入以下代码即可解决
self.edgesForExtendedLayout = UIRectEdgeNone;
self.collectionView=[[UICollectionView alloc]initWithFrame:CGRectMake(0,0, kUIScreenWidth, kUIScreenHeight-kNavigationBarHeight-kTabbarHeight) collectionViewLayout:flowLayout];