将代码与 UI 连接

就像你使用 @IBOutlet@IBAction 的 iOS 一样,你也可以在这里使用它们。

假设我们有一个按钮,单击该按钮会将标签的文本更改为其他内容。

开始:

  1. 添加 WKInterfaceLabelWKInterfaceLabelInterfaceController

  2. Ctrl-drag 从 WKInterfaceLabel 拖动到 InterfaceController.swift 并输入详细信息,如下图所示,添加一个 outlet 属性:

StackOverflow 文档

  1. Ctrl-drag 从 WKInterfaceButton 拖动到 InterfaceController.swift 并输入详细信息,如下图所示,添加一个动作方法:

StackOverflow 文档

  1. 填写动作方法:

迅速

outputLabel.setText("Button Tapped!")

Objective-C

[[self outputLabel] setText:@"Button Tapped!"]
  1. 运行程序并点击按钮以查看结果。