我在我的应用程序中添加了一个自定义条形按钮。我想设置其标题,但无法设置其标题。我在swift 3中使用以下代码。请建议最佳解决方案。
let customButton=UIButton(frame: CGRect(x: 0, y: 0, width: 60, height:30))
customButton.backgroundColor=Constant.Color.customBlue
customButton.titleLabel?.text = "Add"
customButton.titleLabel?.textColor=UIColor.white
let barButton = UIBarButtonItem(customView:customButton)
barButton.title="Add"
barButton.tintColor=UIColor.white
self.navigationItem.rightBarButtonItem=barButton
最佳答案
您需要设置标题如下:
customButton?.setTitle("Add", for:.normal)
关于ios - 无法为自定义栏按钮设置标题?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40508111/