Adjust position of bar button item when using large titles with iOS 11

后端 未结 5 935
暗喜
暗喜 2021-02-05 06:32

I am using the large title navbar with iOS 11, but when I add a bar button item it looks weird positioned in the same location as the original title navbar. I would like to move

5条回答
  •  一整个雨季
    2021-02-05 06:51

    What you want to do is set the title position adjustments of the BarButtonItem. Add the following line to the viewWillAppear func. Play with the vertical and horizontal value to get the layout of ur liking.

    navigationItem.rightBarButtonItem?.setTitlePositionAdjustment(.init(horizontal: 10, vertical: 20), for: UIBarMetrics.default)

    https://developer.apple.com/documentation/uikit/uibarbuttonitem/1617149-settitlepositionadjustment

提交回复
热议问题