0

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“没有成员”文本“”

有任何想法吗?提前谢谢了!

4

1 回答 1

0

您需要使用setText而不是text.

myLabel.setText("here is your note")

这是参考

于 2016-09-11T02:55:39.113 回答