5 Commits
Author SHA1 Message Date
Rich Abery 2e5ea94b0e Merge pull request #3 from RichAppz/backgroundColor
Added extension for background colour
2017-01-26 07:06:38 +00:00
Rich Abery cbf7a49567 Added extension for background colour 2017-01-26 07:06:15 +00:00
Rich Abery b939b83c48 Merge pull request #1 from RichAppz/commenting
Commenting on the public parameters
2017-01-21 12:22:42 +00:00
Rich Abery 7afcbca752 Commenting on the public parameters 2017-01-21 12:21:47 +00:00
Rich Abery e554c51d43 Read changes 2017-01-21 12:05:11 +00:00
4 changed files with 55 additions and 5 deletions
+42
View File
@@ -0,0 +1,42 @@
//
// Extension+NSView.swift
// RichAppz
//
// Copyright © 2016-2017 RichAppz Limited. All rights reserved.
// richappz.com - (rich@richappz.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
import Cocoa
extension NSView {
var backgroundColor: NSColor? {
get {
guard let layer = layer, let backgroundColor = layer.backgroundColor else { return nil }
return NSColor(cgColor: backgroundColor)
}
set {
wantsLayer = true
layer?.backgroundColor = newValue?.cgColor
}
}
}
+8 -2
View File
@@ -95,11 +95,12 @@ class MacToggle: NSView {
didSet { animate() }
}
/// Change the toggle border on and off
public var hasToggleBorder = true {
didSet { circle.layer?.borderWidth = hasToggleBorder ? toggleBorderWidth : 0 }
}
// MARK: Size Settings
/// Change the width of the outline border
public var outlineWidth: CGFloat = 2 {
didSet {
backVw.layer?.borderWidth = outlineWidth
@@ -107,10 +108,12 @@ class MacToggle: NSView {
}
}
/// Change the width of the border on the toggle
public var toggleBorderWidth: CGFloat = 2 {
didSet { circle.layer?.borderWidth = hasToggleBorder ? toggleBorderWidth : 0 }
}
/// Change the radius of the complete toggle
public var radius: CGFloat {
get {
if let r = _radius { return r }
@@ -123,19 +126,22 @@ class MacToggle: NSView {
}
// MARK: Color Settings
/// Change the color of the outline border
public var outlineColor: NSColor = .lightGray {
didSet { backVw.layer?.borderColor = outlineColor.cgColor }
}
/// Change the color of the fill when the toggle is on
public var fillColor: NSColor = .lightGray {
didSet { if isOn { backVw.layer?.borderColor = fillColor.cgColor } }
}
/// Change the color of the toggle center
public var toggleColor: NSColor = .white {
didSet { circle.backgroundColor = toggleColor }
}
/// Change the background color of the complete toggle (visible when switch is off)
public var backColor: NSColor = .white {
didSet { backVw.backgroundColor = backColor }
}
+5 -3
View File
@@ -6,11 +6,13 @@
#MacToggle
Create Mac OS toggles with the user interaction, desisn and animation of the iOS UISwitch. Completely configurable through quick understandable code. With access to the source, you are able to add more custom features if you want. If their are any tweaks that you feel should be enabled then send me over a PR and I will have a look. **Swift 3 Ready**
Create Mac OS toggles with the user interaction, design and animation of the iOS UISwitch. Completely configurable through quick understandable code. With access to the source, you are able to add more custom features if you want. If their are any tweaks that you feel should be enabled then send me over a PR and I will have a look. **Swift 3 Ready**
<center>![Banner](Resources/mactoggle.gif)</center>
##Setup
Nothing complicated, download the MacToggle.swift file and add it to your project.
Nothing complicated, copy the MacToggle folder over to your project.
<br>
@@ -24,7 +26,7 @@ let toggle: MacToggle = {
return view
}()
```
There a plenty of settings you can play with, have fun and create the designs that you require for your Mac OS developments. Here are a couple of designs, for some ideas:
There are plenty of settings you can play with, have fun and create the designs that you require for your Mac OS developments. Here are a couple of designs, for ideas:
<br>
Binary file not shown.

After

Width:  |  Height:  |  Size: 212 KiB