gpt4 book ai didi

Swift Viewcontroller.type 没有名为的成员

转载 作者:行者123 更新时间:2023-11-28 05:32:35 25 4
gpt4 key购买 nike

这是我在最顶层的代码:

var newPurchase:Purchase = Purchase()

然后在底部我有:

class func updateLabels(label: UILabel, item: String)
{
label.text = newPurchase.purchaseLemonsBalance // ViewController.type does not have a member named 'newPurchase'
}

最佳答案

您不能在类函数中访问实例变量。

如果你想访问实例变量,你必须把你的类函数变成一个实例函数:

改变

class func updateLabels(label: UILabel, item: String)

func updateLabels(label: UILabel, item: String)

关于Swift Viewcontroller.type 没有名为的成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27181448/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com