Adjusting navigationItem.titleView's frame?

前端 未结 13 1583
小蘑菇
小蘑菇 2021-01-31 04:14

I noticed that the titleView\'s position depends on the rightbarbutton title. How can I set the frame of the titleView to be in the center instead?

I\'ve tried setting

13条回答
  •  旧巷少年郎
    2021-01-31 04:40

    Override intrinsicContentSize in your custom view:

    - (CGSize )intrinsicContentSize {
        return CGSizeMake(180, 44);
    }
    

提交回复
热议问题