UISearchBar overlaps status bar in iOS

前端 未结 6 1369
抹茶落季
抹茶落季 2020-12-29 08:03

I (just like everyone else here) am running into the same Status Bar overlap issue that everyone else is, with a little twist, and that is why I opening a new question about

6条回答
  •  遥遥无期
    2020-12-29 08:16

    Struggled around with this issue too. You need to put this into your ViewControllers viewDidLoad method.

    if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) {
        self.edgesForExtendedLayout = UIRectEdgeNone;
    }
    

    This should fix it. It's stated in the iOS 7 Transition Guide, too. https://developer.apple.com/library/ios/documentation/userexperience/conceptual/TransitionGuide/AppearanceCustomization.html#//apple_ref/doc/uid/TP40013174-CH15-SW1

提交回复
热议问题