UISearchBar overlaps status bar in iOS

前端 未结 6 1367
抹茶落季
抹茶落季 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:22

    If the navigationBar is visible do the following in ViewDidLoad :

    self.edgesForExtendedLayout = UIRectEdgeNone;
    

    If the navigationBar is hidden do the following in ViewDidLoad :

    Adjust all the UIView elements by shifting them 20pt

提交回复
热议问题