if ステートメントと else ステートメントを含む関数をボタンに接続しました。しかし、ボタンが最初に押されたときにのみ実行される別のアクションも追加したいと考えています。
質問する
1145 次
2 に答える
2
First, extract your logic into separate function - it will be easier for you to manage it.
Second, add boolean to the controller called firstTimePressed
:
var firstTimePressed : Bool = false
in your button action add the following:
if(firstTimePressed == false){
firstTimePressed = true
}
else{
//call your function
}
And that's it.
于 2015-09-04T13:26:30.883 に答える