如何在 Apple Watch 上显示标签?
how can I display labels on apple watch?
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"
}
我已经尝试过不同的方法,但还是坚持在显示屏上显示注释。最新错误显示 "Value of type "WKInterfaceLabel
" 没有成员 "text""
有什么想法吗?非常感谢!
您需要使用 setText
而不是 text
。
myLabel.setText("here is your note")
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"
}
我已经尝试过不同的方法,但还是坚持在显示屏上显示注释。最新错误显示 "Value of type "WKInterfaceLabel
" 没有成员 "text""
有什么想法吗?非常感谢!
您需要使用 setText
而不是 text
。
myLabel.setText("here is your note")