标签: ios swift toolbar
我的问题类似于this,但我只是想知道如何快速完成。我想将UIImageView添加到工具栏。
答案 0 :(得分:1)
let toolBar = UIToolbar() let button = UIBarButtonItem(image: UIImage(named: "imageName"), style: .plain, target: self, action: #selector(buttonAction(_:))) toolBar.items = [button]