-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUITextField+Extensions.swift
127 lines (111 loc) · 3.98 KB
/
UITextField+Extensions.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
118
119
120
121
122
123
124
125
126
127
//
// UITextfield+Extensions.swift
// Swift Utilities
//
// Created by Tre`Von McKay on 7/14/16.
//
import Foundation
import UIKit
extension UITextField{
func isEmpty() -> Bool{
return (self.text == nil || self.text?.isEmpty == true)
}
fileprivate func _setBorder(_ name: String, frame: CGRect, color: UIColor, width: CGFloat){
let layers = self.layer.sublayers;
let border = CALayer();
border.name = name;
border.borderColor = color.cgColor;
border.frame = frame;
border.borderWidth = width;
var unique = true;
var modified = false;
if(layers != nil)
{
for layer in layers!
{
if(layer.name == name)
{
unique = false;
if(layer.borderColor != border.borderColor
|| !layer.frame.equalTo(border.frame)
|| layer.borderWidth != border.borderWidth){
modified = true;
layer.removeFromSuperlayer();
}
}
}
}
if(unique || modified){
self.layer.addSublayer(border);
self.layer.masksToBounds = true;
}
}
func setLeftBorder(_ color: UIColor, width: CGFloat){
let frame = CGRect(x: 0, y: 0, width: width, height: self.frame.size.height);
_setBorder("border_left", frame: frame, color: color, width: width);
}
func setTopBorder(_ color: UIColor, width: CGFloat){
let frame = CGRect(x: 0, y: 0, width: self.frame.size.width, height: width);
_setBorder("border_top", frame: frame, color: color, width: width);
}
func setBottomBorder(_ color: UIColor, width: CGFloat){
let layers = self.layer.sublayers;
let border = CALayer();
border.name = "border_bottom";
border.borderColor = color.cgColor;
border.frame = CGRect(x: 0, y: self.frame.size.height - width, width: self.frame.size.width, height: width);
border.borderWidth = width;
var unique = true;
var modified = false;
if(layers != nil)
{
for layer in layers!
{
if(layer.name == "border_bottom")
{
unique = false;
if(layer.borderColor != border.borderColor
|| !layer.frame.equalTo(border.frame)
|| layer.borderWidth != border.borderWidth){
modified = true;
layer.removeFromSuperlayer();
}
}
}
}
if(unique || modified){
self.layer.addSublayer(border);
self.layer.masksToBounds = true;
}
}
func setRightBorder(_ color: UIColor, width: CGFloat){
let layers = self.layer.sublayers;
let border = CALayer();
border.name = "border_right";
border.borderColor = color.cgColor;
border.frame = CGRect(x: self.frame.size.width - width, y: 0, width: self.frame.size.width, height: self.frame.size.height);
border.borderWidth = width;
var unique = true;
var modified = false;
if(layers != nil)
{
for layer in layers!
{
if(layer.name == "border_right")
{
unique = false;
if(layer.borderColor != border.borderColor
|| !layer.frame.equalTo(border.frame)
|| layer.borderWidth != border.borderWidth){
modified = true;
layer.removeFromSuperlayer();
}
}
}
}
if(unique || modified){
self.layer.addSublayer(border);
self.layer.masksToBounds = true;
}
}
}