如果 if 语句返回 true 则永远不会执行该函数
我有一个函数,里面有 if 语句,我想在每次人点击时检查,每当 if 语句返回 true 时,我希望删除该函数或不再调用该函数,是否可以在 swift 中实现?
func checkLevelUp(){
if CookieViewController.moneyLevel >= 3 && CookieViewController.bonusLevel >= 3 && CookieViewController.spinLevel >= 3 {
print("Level up !!!!!!!") // if this is printed, I never want checkLevelUp function to exists
}
}
I've a function with if statement inside it, I want to check everytime person clicks, whenever the if statement returns true, I want that function to be removed or never again called, is it possible to achieve in swift?
func checkLevelUp(){
if CookieViewController.moneyLevel >= 3 && CookieViewController.bonusLevel >= 3 && CookieViewController.spinLevel >= 3 {
print("Level up !!!!!!!") // if this is printed, I never want checkLevelUp function to exists
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将此特定状态存储在此函数的范围之外。
如何将其存储在函数范围之外取决于您,但这就是您正在寻找的解决方案。
You need to store this particular state outside the scope of this function.
How you store it outside the scope of the function is up to you but this is the solution you're looking for.