编辑 去掉UIScrollView的inset 本文访问次数:0 如果你的页面包含了UIScrollView,UITableView或者UICollectionView,有时候页面会自动添加inset,使用以下代码去掉这些inset self.edgesForExtendedLayout = UIRectEdgeNone; self.automaticallyAdjustsScrollViewInsets = NO; iostipnote