如果 if 语句返回 true 则永远不会执行该函数

发布于 2025-01-12 00:37:31 字数 453 浏览 0 评论 0原文

我有一个函数,里面有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

假扮的天使 2025-01-19 00:37:31

您需要将此特定状态存储在此函数的范围之外。

var didLevelUp = false

func checkLevelUp() {
    guard !didLevelUp else {
        return // return out of the function if `didLevelUp` is not false
    }
    if CookieViewController.moneyLevel >= 3 &&
        CookieViewController.bonusLevel >= 3 &&
        CookieViewController.spinLevel >= 3 {
        print("Level up !!!!!!!")
        didLevelUp = true
    }
}

如何将其存储在函数范围之外取决于您,但这就是您正在寻找的解决方案。

You need to store this particular state outside the scope of this function.

var didLevelUp = false

func checkLevelUp() {
    guard !didLevelUp else {
        return // return out of the function if `didLevelUp` is not false
    }
    if CookieViewController.moneyLevel >= 3 &&
        CookieViewController.bonusLevel >= 3 &&
        CookieViewController.spinLevel >= 3 {
        print("Level up !!!!!!!")
        didLevelUp = true
    }
}

How you store it outside the scope of the function is up to you but this is the solution you're looking for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文