if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0
) {
self.edgesForExtendedLayout = UIRectEdgeNone;//view在导航栏下方
}
iOS7 下面使用 self.edgesForExtendedLayout = UIRectEdgeNone;
最新推荐文章于 2020-01-20 11:24:05 发布

if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0
) {
self.edgesForExtendedLayout = UIRectEdgeNone;//view在导航栏下方
}