gpt4 book ai didi

swift - 不确定为什么这个基本的 watchOS 2 应用程序不工作

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

这是我学习编码的第一天。我想使用 watchOS 2 制作一个简单的 WatchKit 应用程序。

我启动并运行了 Hello World 应用程序,现在当我尝试让菜单按下触发标签更改时,代码无法编译,并出现以下错误:

WKInterfaceLabel doesn't have a member called set.

可以看到详细图here .

快速代码:

import WatchKit
import Foundation

class InterfaceController: WKInterfaceController {
@IBOutlet var label: WKInterfaceLabel!
override func awakeWithContext(context: AnyObject?) {
super.awakeWithContext(context)

// Configure interface objects here.
}


override func willActivate() {
// This method is called when watch view controller is about to be visible to user
super.willActivate()
}

override func didDeactivate() {
// This method is called when watch view controller is no longer visible
super.didDeactivate()
}

@IBAction func CookBabyCook() {
label.set("Cooked!")
}
}

最佳答案

Label.set() 是这里的问题。

我相信标签对象没有 set() 方法。您必须将其替换为 setText()

关于swift - 不确定为什么这个基本的 watchOS 2 应用程序不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31893692/

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