navigation bar right bar button items spacing

前端 未结 10 2094
执念已碎
执念已碎 2021-01-31 16:47

I have created a with left bar button item added from storyboard, titleView and three right bar button items from code.

Here is the code:

override func         


        
10条回答
  •  广开言路
    2021-01-31 17:13

    Try to change the constraintEqualToConstant

    [myUIButton.widthAnchor constraintEqualToConstant:24].active = YES;
    [myUIButton.heightAnchor constraintEqualToConstant:24].active = YES;
    

提交回复
热议问题