将代码与 UI 连接
就像你使用 @IBOutlet
和 @IBAction
的 iOS 一样,你也可以在这里使用它们。
假设我们有一个按钮,单击该按钮会将标签的文本更改为其他内容。
开始:
-
添加
WKInterfaceLabel
和WKInterfaceLabel
到InterfaceController
。 -
Ctrl-drag 从
WKInterfaceLabel
拖动到InterfaceController.swift
并输入详细信息,如下图所示,添加一个 outlet 属性:
- Ctrl-drag 从
WKInterfaceButton
拖动到InterfaceController.swift
并输入详细信息,如下图所示,添加一个动作方法:
- 填写动作方法:
迅速
outputLabel.setText("Button Tapped!")
Objective-C
[[self outputLabel] setText:@"Button Tapped!"]
- 运行程序并点击按钮以查看结果。