Xcode 8.0
我尝试为 watchOS 编写我的第一个应用。我只想在按下按钮时显示一个音符。这是我到目前为止所得到的:
import WatchKit
import Foundation
class InterfaceController: WKInterfaceController {
@IBOutlet var myLabel: WKInterfaceLabel!
@IBAction func getNote(){
print("button pushed")
myLabel.text = "here is your note"
}
我已经尝试了不同的方法,但实际上仍然坚持在显示屏上显示注释。最新的错误显示“类型的值”WKInterfaceLabel
“没有成员”text“”
有什么想法吗?非常感谢提前!