-(void)viewWillAppear:(BOOL)animated
{
self.navigationController.navigationBar.hidden = YES;
self.navigationController.navigationBar.translucent = YES;
BOOL is7Version=[[[UIDevice currentDevice]systemVersion] floatValue] >= 7.0 ? YES : NO;
if (is7Version) {
self.edgesForExtendedLayout = UIRectEdgeNone;
self.navigationController.navigationBar.translucent = NO;
}
if (@available(iOS 11.0, *)) {
self.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}
}
版权声明:本文为ltf857原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。