UISearchBar clipped under status bar when added to UISearchDisplayController

后端 未结 2 1654
旧时难觅i
旧时难觅i 2021-02-14 03:52

I want my search bar to draw its background extended upwards below the status bar like this:

\"enter

2条回答
  •  没有蜡笔的小新
    2021-02-14 04:47

    You conform to the UIBarPositioningDelegate protocol and upon properly becoming the delegate for your SearchBar, implement the delegate method as such

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

提交回复
热议问题