I want to set my UISwitch to on or off programmatically. How would I do that? I am an iOS newbie.
If you are using a UISwitch, then as seen in the developer API, the task setOn: animated:
should do the trick.
- (void)setOn:(BOOL)on animated:(BOOL)animated
So to set the switch ON in your program, you would use:
Objective-C
[switchName setOn:YES animated:YES];
Swift
switchName.setOn(true, animated: true)