-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUIViewAutoLayoutExtension.swift
executable file
·276 lines (245 loc) · 9.69 KB
/
UIViewAutoLayoutExtension.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
//
// UIViewAutoLayoutExtension.swift
// AutolayoutDemo
//
// Created by Nimrod on 8/07/2015.
// Copyright (c) 2015 Nissim. All rights reserved.
//
import UIKit
extension NSLayoutConstraint {
@discardableResult
class func constraints(withVisualFormat visualFormat: String, views: UIView ..., options: NSLayoutFormatOptions? = nil, priority: UILayoutPriority? = nil) -> [NSLayoutConstraint] {
var viewsDic: [String : UIView] = [String : UIView]()
for (i, view) in views.enumerated() {
view.translatesAutoresizingMaskIntoConstraints = false
viewsDic["v\(i)"] = view
}
let constraints = NSLayoutConstraint.constraints(withVisualFormat: visualFormat, options: options ?? [], metrics: nil, views: viewsDic)
if let priority = priority {
constraints.forEach { (con) in
con.priority = priority
}
}
NSLayoutConstraint.activate(constraints)
return constraints
}
@discardableResult
class func alignAttribute(_ attribute: NSLayoutAttribute, ofViews views: UIView ...) -> [NSLayoutConstraint] {
var constraints: [NSLayoutConstraint] = []
if views.count > 1 {
views.forEach { (view) in
view.translatesAutoresizingMaskIntoConstraints = false
}
for i in 1 ... views.count - 1 {
constraints.append(NSLayoutConstraint.init(item: views[i - 1], attribute: attribute, relatedBy: .equal, toItem: views[i], attribute: attribute, multiplier: 1, constant: 0))
}
NSLayoutConstraint.activate(constraints)
}
return constraints
}
func setMultiplier(multiplier: CGFloat) -> NSLayoutConstraint {
NSLayoutConstraint.deactivate([self])
let newConstraint = NSLayoutConstraint(
item: firstItem,
attribute: firstAttribute,
relatedBy: relation,
toItem: secondItem,
attribute: secondAttribute,
multiplier: multiplier,
constant: constant)
newConstraint.priority = priority
newConstraint.shouldBeArchived = self.shouldBeArchived
newConstraint.identifier = self.identifier
NSLayoutConstraint.activate([newConstraint])
return newConstraint
}
}
extension UIView {
var safeLeadingAnchor: NSLayoutAnchor<NSLayoutXAxisAnchor> {
get {
if #available(iOS 11.0, *) {
return self.safeAreaLayoutGuide.leadingAnchor
} else {
return self.leadingAnchor
}
}
}
var safeTrailingAnchor: NSLayoutAnchor<NSLayoutXAxisAnchor> {
get {
if #available(iOS 11.0, *) {
return self.safeAreaLayoutGuide.trailingAnchor
} else {
return self.trailingAnchor
}
}
}
var safeLeftAnchor: NSLayoutAnchor<NSLayoutXAxisAnchor> {
get {
if #available(iOS 11.0, *) {
return self.safeAreaLayoutGuide.leftAnchor
} else {
return self.leftAnchor
}
}
}
var safeRightAnchor: NSLayoutAnchor<NSLayoutXAxisAnchor> {
get {
if #available(iOS 11.0, *) {
return self.safeAreaLayoutGuide.rightAnchor
} else {
return self.rightAnchor
}
}
}
var safeTopAnchor: NSLayoutAnchor<NSLayoutYAxisAnchor> {
get {
if #available(iOS 11.0, *) {
return self.safeAreaLayoutGuide.topAnchor
} else {
return self.topAnchor
}
}
}
var safeBottomAnchor: NSLayoutAnchor<NSLayoutYAxisAnchor> {
get {
if #available(iOS 11.0, *) {
return self.safeAreaLayoutGuide.bottomAnchor
} else {
return self.bottomAnchor
}
}
}
}
extension UIView {
@available(iOS 9.0, *)
@discardableResult
func anchorTo(
// anchors
top: NSLayoutAnchor<NSLayoutYAxisAnchor>? = nil,
leading: NSLayoutAnchor<NSLayoutXAxisAnchor>? = nil,
right: NSLayoutAnchor<NSLayoutXAxisAnchor>? = nil,
bottom: NSLayoutAnchor<NSLayoutYAxisAnchor>? = nil,
trailing: NSLayoutAnchor<NSLayoutXAxisAnchor>? = nil,
left: NSLayoutAnchor<NSLayoutXAxisAnchor>? = nil,
centerX: NSLayoutAnchor<NSLayoutXAxisAnchor>? = nil,
centerY: NSLayoutAnchor<NSLayoutYAxisAnchor>? = nil,
widthAnchor: NSLayoutAnchor<NSLayoutDimension>? = nil,
heightAnchor: NSLayoutAnchor<NSLayoutDimension>? = nil,
// constants
widthConstant: CGFloat? = nil,
heightConstant: CGFloat? = nil,
// paddings
padding: CGFloat? = nil,
topPadding: CGFloat? = nil,
leadingPadding: CGFloat? = nil,
rightPadding: CGFloat? = nil,
bottomPadding: CGFloat? = nil,
trailingPadding: CGFloat? = nil,
leftPadding: CGFloat? = nil,
centerXOffset: CGFloat? = nil,
centerYOffset: CGFloat? = nil,
priority: Float? = nil,
setActive: Bool = true
) -> [NSLayoutConstraint] {
// constrain view
self.translatesAutoresizingMaskIntoConstraints = false
var constraints: [NSLayoutConstraint] = []
// side anchors
if let top = top {
constraints.append(self.topAnchor.constraint(equalTo: top, constant: (topPadding ?? padding) ?? 0))
}
if let leading = leading {
constraints.append(self.leadingAnchor.constraint(equalTo: leading, constant: (leadingPadding ?? padding) ?? 0))
}
if let right = right {
constraints.append(self.rightAnchor.constraint(equalTo: right, constant: -((rightPadding ?? padding) ?? 0)))
}
if let bottom = bottom {
constraints.append(self.bottomAnchor.constraint(equalTo: bottom, constant: -((bottomPadding ?? padding) ?? 0)))
}
if let trailing = trailing {
constraints.append(self.trailingAnchor.constraint(equalTo: trailing, constant: -((trailingPadding ?? padding) ?? 0)))
}
if let left = left {
constraints.append(self.leftAnchor.constraint(equalTo: left, constant: (leftPadding ?? padding) ?? 0))
}
// centers
if let centerX = centerX {
constraints.append(self.centerXAnchor.constraint(equalTo: centerX, constant: centerXOffset ?? 0))
}
if let centerY = centerY {
constraints.append(self.centerYAnchor.constraint(equalTo: centerY, constant: centerYOffset ?? 0))
}
// length anchors
if let widthAnchor = widthAnchor {
constraints.append(self.widthAnchor.constraint(equalTo: widthAnchor))
}
if let heightAnchor = heightAnchor {
constraints.append(self.heightAnchor.constraint(equalTo: heightAnchor))
}
// length constants
if let widthConstant = widthConstant {
constraints.append(self.widthAnchor.constraint(equalToConstant: widthConstant))
}
if let heightConstant = heightConstant {
constraints.append(self.heightAnchor.constraint(equalToConstant: heightConstant))
}
if let priority = priority {
constraints.forEach { (constraint) in
constraint.priority = UILayoutPriority.init(priority)
}
}
if setActive {
NSLayoutConstraint.activate(constraints)
}
return constraints
}
func turnOffMaskResizing() {
self.translatesAutoresizingMaskIntoConstraints = false
}
// Given an item, stretches the width and height of the view to the toItem.
@discardableResult
func stretchToBoundsOfSuperView(_ padding: CGFloat = 0) -> [NSLayoutConstraint] {
return self.stretchToWidthOfSuperView(padding) + self.stretchToHeightOfSuperView(padding)
}
@discardableResult
func stretchToWidthOfSuperView(_ padding: CGFloat = 0) -> [NSLayoutConstraint] {
return self.constrainToLeftOfSuperView(padding) + self.constrainToRightOfSuperView(padding)
}
@discardableResult
func stretchToHeightOfSuperView(_ padding: CGFloat = 0) -> [NSLayoutConstraint] {
return self.constrainToTopOfSuperView(padding) + self.constrainToBottomOfSuperView(padding)
}
@discardableResult
func constrainToTopOfSuperView(_ padding: CGFloat) -> [NSLayoutConstraint] {
self.turnOffMaskResizing()
guard let superview = self.superview else {
return []
}
return self.anchorTo(top: superview.safeTopAnchor, padding: padding)
}
@discardableResult
func constrainToLeftOfSuperView(_ padding: CGFloat) -> [NSLayoutConstraint] {
self.turnOffMaskResizing()
guard let superview = self.superview else {
return []
}
return self.anchorTo(leading: superview.safeLeadingAnchor, padding: padding)
}
@discardableResult
func constrainToBottomOfSuperView(_ padding: CGFloat) -> [NSLayoutConstraint] {
self.turnOffMaskResizing()
guard let superview = self.superview else {
return []
}
return self.anchorTo(bottom: superview.safeBottomAnchor, padding: padding)
}
@discardableResult
func constrainToRightOfSuperView(_ padding: CGFloat) -> [NSLayoutConstraint] {
self.turnOffMaskResizing()
guard let superview = self.superview else {
return []
}
return self.anchorTo(trailing: superview.safeTrailingAnchor, padding: padding)
}
}