如何在swift中按下按钮

时间:2016-03-14 18:02:35

标签: ios swift uibutton

我遇到了问题:

如果第一次按下该按钮,我需要显示信息(例如,"文本1和#34;)。如果第二次按下按钮,我想显示"文本2"。在第三次之后 - "文本1"等等

如何在Swift中完成?

2 个答案:

答案 0 :(得分:1)

var buttonTappedCount : Int = 0
func buttonTapped(){
    ++buttonTappedCount

    if(buttonTappedCount % 2 == 0) {
        button.text = "1"
    } else {
        button.text = "2"
    }
}

答案 1 :(得分:0)

这是一个Swift版本。

$token = $result->customer->creditCards[0]->token