私はそれを実行するときにmyActionという関数を持っています。
myAction関数でtextFiledを最初に更新するにはどうすればよいですか?これを行うためのSwiftの関数でUIを最初に更新するには
func doAction() {
// do this action will take a lot of time
}
@IBAction func myAction(sender: AnyObject) {
// update textField first
self.textFild?.stringValue = "start do action!"
doAction()
// update textField when doAction finished
self.textFild?.stringValue = "finished action!"
}
DoAction()before complete //テキストフィールドの更新が完了しましたか? –
私はtextField UI fistを更新し、 "doAction"関数を実行して、最終的にtextField UIを更新する必要があります。 – CocoaUser