UISearchBar overlaps status bar in iOS

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

    UISearchBar has a delegate method for what you want. Just place it 20px from top.

    - (UIBarPosition)positionForBar:(id )bar
    {
        return UIBarPositionTopAttached;
    }
    

    Unfortunately it doesn't work together with a UISearchDisplayController.

提交回复
热议问题