我遇到了问题:
如果第一次按下该按钮,我需要显示信息(例如,"文本1和#34;)。如果第二次按下按钮,我想显示"文本2"。在第三次之后 - "文本1"等等
如何在Swift中完成?
答案 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