ITSwitch Save

ITSwitch is a replica of UISwitch for Mac OS X

Project README

ITSwitch

ITSwitch is a simple and lightweight replica of iOS 7 UISwitch for Mac OS X.

Usage

Not much to it, simply set the custom class of a NSView to ITSwitch in Interface Builder.
You can create an IBAction and simply connect the two in Interface Builder.
Or you can use Cocoa Bindings to directly bind it to one of your properties:

[switch bind:@"checked" toObject:self withKeyPath:@"prop" options:nil];

Use these two properties to explicitely mutate the switches state:

/**
 *  @property checked - Gets or sets the switches state
 */
@property (nonatomic, assign) IBInspectable BOOL checked;

/**
 *  @property tintColor - Gets or sets the switches tint
 */
@property (nonatomic, strong) IBInspectable NSColor *tintColor;

Since ITSwitch uses its CALayer to draw a drop-shadow, you should also layer-back it's superview. If you don't use Core Animation, you can also simply embed the view in a layer-backed view.

Requirements

ITSwitch requires 10.9+ and linking against the QuartzCore.framework.

Tips

You may want to consider setting the width of the view to the golden ratio * height.

So for example:

height = 20;
width = height * 1.618;
Open Source Agenda is not affiliated with "ITSwitch" Project. README Source: iluuu1994/ITSwitch
Stars
289
Open Issues
3
Last Commit
6 years ago
Repository
License

Open Source Agenda Badge

Open Source Agenda Rating