在不同的类中有变量playBegin
,在倒计时后激活。倒计时结束后,playBegin
变为真。我想知道如何创建一旦playBegin成为真正开始的函数。
when playBegin becomes true {
func-y stuff goes on here
}
此函数出现在与设置var的文件不同的文件中,因此func识别此函数非常重要。
提前谢谢
答案 0 :(得分:1)
您可以使用属性观察者:
var playBegin = false {
didSet {
if playBegin {
// the code to execute when the variable becomes true
}
}
}