问题很简单。我有一个UIButton, currencySelector,我想通过编程改变文本。以下是我所拥有的:

currencySelector.text = "foobar"

Xcode给了我一个错误“Expected Declaration”。我做错了什么,我如何使按钮的文本更改?


当前回答

在Xcode中使用swift - 04为按钮设置标题: 首先创建一个名为setTitle的方法,参数title和UIController state如下所示;

func setTitle(_ title : String?, for state : UIControl.State)   {

}

在按钮动作方法中回忆这个方法 像;

yourButtonName.setTitle("String", for: .state)

其他回答

斯威夫特5:

    let controlStates: Array<UIControl.State> = [.normal, .highlighted, .disabled, .selected, .focused, .application, .reserved]
    for controlState in controlStates {
        button.setTitle(NSLocalizedString("Title", comment: ""), for: controlState)
    }

截至2021年12月12日- Swift版本5.5.1^假设你已经有一个IBOutlet链接到你的按钮在正常状态。

yourButton.setTitle("Title of your button", for: .normal)

在Xcode中使用swift - 04为按钮设置标题: 首先创建一个名为setTitle的方法,参数title和UIController state如下所示;

func setTitle(_ title : String?, for state : UIControl.State)   {

}

在按钮动作方法中回忆这个方法 像;

yourButtonName.setTitle("String", for: .state)

Swift 4.2及以上版本

使用按钮的IBOutlet

btnOutlet.setTitle("New Title", for: .normal)

使用按钮的IBAction

@IBAction func btnAction(_ sender: UIButton) {
  sender.setTitle("New Title", for: .normal)
}

斯威夫特5.0

// Standard State
myButton.setTitle("Title", for: .normal)