-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTintingButton.swift
117 lines (81 loc) · 3 KB
/
TintingButton.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
//
// TintingButton.swift
//
// Created by Dominik Vesely on 11/04/15.
// Copyright (c) 2015 Ackee s.r.o. All rights reserved.
//
import Foundation
class TintingButton : UIButton {
typealias TintingButtonAction = (control: Element) -> Bool
var activeTintColor : UIColor?
var normalTintColor : UIColor?
private var action : TintingButtonAction?
enum Element: Int {
case Title,Image,Border
}
convenience init (completelyTintedWith tintColor : UIColor?, activeTintColor: UIColor?) {
self.init(tintColor: tintColor, activeTintColor: activeTintColor, tintAction: {(control: Element) -> Bool in return true})
}
convenience init (titleAndImageTintedWith tintColor : UIColor?, activeTintColor: UIColor?) {
let defaultAction = { (control: Element) -> Bool in
switch control {
case .Title,.Image : return true
case .Border: return false
}
}
self.init(tintColor: tintColor, activeTintColor: activeTintColor, tintAction: defaultAction)
}
required init (tintColor : UIColor?, activeTintColor: UIColor?, tintAction: TintingButtonAction ) {
super.init(frame: CGRect.zeroRect)
self.normalTintColor = tintColor
self.activeTintColor = activeTintColor
self.tintColor = normalTintColor
self.adjustsImageWhenHighlighted = false
self.action = tintAction
styleTitle()
styleBorder()
}
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
func styleTitle() {
if action!(control: .Title) {
setTitleColor(tintColor, forState: UIControlState.Normal)
setTitleColor(activeTintColor, forState: UIControlState.Selected)
setTitleColor(activeTintColor, forState: UIControlState.Highlighted)
}
}
func styleBorder() {
if action!(control: .Border) {
layer.borderColor = tintColor?.CGColor
layer.borderWidth = layer.borderWidth == 0 ? 1.0 : layer.borderWidth
}
}
override func setImage(image: UIImage?, forState state: UIControlState) {
var img = image
if action!(control: .Image) {
img = image?.imageWithRenderingMode(UIImageRenderingMode.AlwaysTemplate)
}
super.setImage(img, forState: state)
}
override var selected : Bool {
didSet {
if selected {
tintColor = activeTintColor
} else {
tintColor = normalTintColor
}
styleBorder()
}
}
override var highlighted : Bool {
didSet {
if highlighted {
tintColor = activeTintColor
} else {
tintColor = normalTintColor
}
styleBorder()
}
}
}