我似乎无法在我想要做的Mac应用程序中更改文本标签.
我正在使用swift.这是我正在使用的代码:
原文链接:https://www.f2er.com/swift/319852.html我正在使用swift.这是我正在使用的代码:
@IBOutlet var sumlab: NSTextField! sumlab.text = "\(result.sum)" // result.sum is the result of a function I made // I also tried this: sumlab.text("\(result.sum)") // and this: sumlab.insertText("\(result.sum)")
这些似乎都不行,这是我需要解决的唯一的问题来完成我的程序.
附:当我写sumlab.text它说NSTextField没有一个成员命名的文本