gpt4 book ai didi

ios - 检查开关是否在 bool watchkit 上

转载 作者:可可西里 更新时间:2023-11-01 00:24:00 24 4
gpt4 key购买 nike

在使用 iOS 的 Swift 中,我曾经能够做到:

if mySwitch.on {

myLabel.text = "The Switch Is In The On Position!"

}else{

myLabel.text = "The Switch Is In The Off Position!"


}

但是在 WatchKit Swift 中如何if mySwitch.on {}

我在 apple 上看到它告诉我 if mySwitch.setOn(on: Bool) 但我如何检查“mySwitch”是处于关闭还是打开位置。

有人知道正确的 bool 方法吗?

谢谢,

乔治·巴洛

最佳答案

没有这样的属性可以帮助您检查当前状态。

但是您可以像这样为您的开关创建一个IBAction:

@IBAction func switchAction(value: Bool) {
if value{
myLabel.text = "The Switch Is In The On Position!"
}else{
myLabel.text = "The Switch Is In The Off Position!"
}
}

如您所见,该参数是一个 bool 值,指示它是打开还是关闭(true = on)

Check the Apple Documentation about that.

关于ios - 检查开关是否在 bool watchkit 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30082566/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com