navigation bar right bar button items spacing

前端 未结 10 2089
执念已碎
执念已碎 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:33

    This is one of methods to solve that.

    Use UIBarButtonItem as a space

    let space = UIBarButtonItem(barButtonSystemItem: .FixedSpace, target: nil, action: nil)
    space.width = -20 // adjust as needed
    self.navigationItem.rightBarButtonItems = [pencilBtn, clipBtn, searchBtn, space]
    

提交回复
热议问题