Search code examples
xcodeuitableviewsearchios11

iOS11 Search bar blank space above and below (iPhone X simulator)


When search is active a blank space is above and below search bar in iOS 11. I have search bar view inside the tableview. It seems that search bar is not stretching up. Or what else is wrong?

Hi guys, if someone needs it, these lines do the trick in viewDidLoad method:

        if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) 
    { 
    self.automaticallyAdjustsScrollViewInsets=YES;
    self.edgesForExtendedLayout = UIRectEdgeNone;
self.navigationController.view.backgroundColor = [UIColor whiteColor];
self.navigationController.navigationBar.translucent = YES; 
    } 

Thanks for help.


Solution

  • Use safe area guide for design. more info refer this link https://useyourloaf.com/blog/safe-area-layout-guide/