The task seemed relatively simple, I wanted an if statement to determine if a check box is checked or not apparently check boxes but am at a loss
I've tried
if checkbox.state == everythign i can think of but it always errors either EXC_BAD_INSTRUCTION or using wrong cant convert variable type to other variable type
i did this on my project and it worked well
if sender.state == .on{
casa_ospiti_text.stringValue = "CASA"
}
else{
casa_ospiti_text.stringValue = "OSPITI"
}
where it changes the value of a textfield (casa_ospiti_text) with constants strings.
Xcode 9 • Swift 4
You can switch the checkbox state property to check if it is on or off as follow:
switch sender.state {
case .on:
print("on")
case .off:
print("off")
case .mixed:
print("mixed")
default: break
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With