当搜索处于活动状态时,空白空间在iOS 11中的搜索栏上方和下方。看来搜索栏没有伸展。还是还有什么错?
嗨,大家,如果有人需要,这些行可以在ViewDidload方法:
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7)
{
self.automaticallyAdjustsScrollViewInsets=YES;
self.edgesForExtendedLayout = UIRectEdgeNone;
self.navigationController.view.backgroundColor = [UIColor whiteColor];
self.navigationController.navigationBar.translucent = YES;
}
感谢您的帮助。
使用安全区域指南进行设计。更多信息请参阅此链接https://useyourloaf.com/blog/safe-area-layout-guide/