-
Notifications
You must be signed in to change notification settings - Fork 21
/
JHProgressHUD.swift
255 lines (223 loc) · 8.25 KB
/
JHProgressHUD.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
//
// JHProgressHUD.swift
// JHProgressHUD
//
// Created by Harikrishnan on 02/12/14.
// Copyright (c) 2014 Harikrishnan T. All rights reserved.
//
import UIKit
class JHProgressHUD: UIView
{
fileprivate var backGroundView : UIView?
fileprivate var progressIndicator : UIActivityIndicatorView?
fileprivate var titleLabel : UILabel?
fileprivate var footerLabel : UILabel?
var headerColor : UIColor
var footerColor : UIColor
var backGroundColor : UIColor
var loaderColor : UIColor
static let sharedHUD = JHProgressHUD()
init()
{
//Initialising Code
headerColor = UIColor.white
footerColor = UIColor.white
backGroundColor = UIColor.black
loaderColor = UIColor.white
super.init(frame: CGRect.zero)
}
required init(coder aDecoder: NSCoder)
{
headerColor = UIColor.white
footerColor = UIColor.white
backGroundColor = UIColor.black
loaderColor = UIColor.white
super.init(coder: aDecoder)!
}
override init(frame: CGRect)
{
headerColor = UIColor.white
footerColor = UIColor.white
backGroundColor = UIColor.black
loaderColor = UIColor.white
super.init(frame: frame)
}
// MARK: -Public Methods
// Show the loader added to the mentioned view with the provided title and footer texts
func showInView(_ view : UIView, withHeader title : String?, andFooter footer : String?)
{
self.hide()
self.frame = view.frame
setIndicator()
if title != nil && !isCleanedStringEmpty(title!)
{
setTitleLabel(title!)
titleLabel!.frame = CGRect(x: 0, y: 0, width: getLabelSize().width, height: getLabelSize().height)
}
if footer != nil && !isCleanedStringEmpty(footer!)
{
setFooterLabel(footer!)
footerLabel!.frame = CGRect(x: 0, y: 0, width: getLabelSize().width, height: getLabelSize().height)
}
setBackGround(self)
if title != nil && !isCleanedStringEmpty(title!)
{
titleLabel!.frame.origin = getHeaderOrigin(backGroundView!)
titleLabel?.adjustsFontSizeToFitWidth = true
backGroundView?.addSubview(titleLabel!)
}
if footer != nil && !isCleanedStringEmpty(footer!)
{
footerLabel!.frame.origin = getFooterOrigin(backGroundView!)
footerLabel?.adjustsFontSizeToFitWidth = true
backGroundView?.addSubview(footerLabel!)
}
progressIndicator?.frame.origin = getIndicatorOrigin(backGroundView!, activityIndicatorView: progressIndicator!)
backGroundView?.addSubview(progressIndicator!)
view.addSubview(self)
}
// Show the loader added to the mentioned window with the provided title and footer texts
func showInWindow(_ window : UIWindow, withHeader title : String?, andFooter footer : String?)
{
self.showInView(window, withHeader: title, andFooter: footer)
}
// Show the loader added to the mentioned view with no title and footer texts
func showInView(_ view : UIView)
{
self.showInView(view, withHeader: nil, andFooter: nil)
}
// Show the loader added to the mentioned window with no title and footer texts
func showInWindow(_ window : UIWindow)
{
self.showInView(window, withHeader: nil, andFooter: nil)
}
// Removes the loader from its superview
func hide()
{
if self.superview != nil
{
self.removeFromSuperview()
progressIndicator?.stopAnimating()
}
}
// MARK: -Set view properties
fileprivate func setBackGround(_ view : UIView)
{
if backGroundView?.superview != nil
{
backGroundView?.removeFromSuperview()
let aView = backGroundView?.viewWithTag(1001) as UIView?
aView?.removeFromSuperview()
}
backGroundView = UIView(frame: getBackGroundFrame(self))
backGroundView?.backgroundColor = UIColor.clear
let translucentView = UIView(frame: backGroundView!.bounds)
translucentView.backgroundColor = backGroundColor
translucentView.alpha = 0.85
translucentView.tag = 1001;
translucentView.layer.cornerRadius = 15.0
backGroundView?.addSubview(translucentView)
backGroundView?.layer.cornerRadius = 15.0
self.addSubview(backGroundView!)
}
fileprivate func setIndicator()
{
if progressIndicator?.superview != nil
{
progressIndicator?.removeFromSuperview()
}
progressIndicator = UIActivityIndicatorView(activityIndicatorStyle: .whiteLarge)
progressIndicator?.activityIndicatorViewStyle = UIActivityIndicatorViewStyle.whiteLarge
progressIndicator?.color = loaderColor
progressIndicator?.backgroundColor = UIColor.clear
progressIndicator?.startAnimating()
}
fileprivate func setTitleLabel(_ text : String)
{
if titleLabel?.superview != nil
{
titleLabel?.removeFromSuperview()
}
titleLabel = UILabel()
titleLabel?.text = text
titleLabel?.font = self.boldFontWithFont(titleLabel?.font)
titleLabel?.textColor = headerColor
titleLabel?.textAlignment = .center
}
fileprivate func setFooterLabel(_ text : String)
{
if footerLabel?.superview != nil
{
footerLabel?.removeFromSuperview()
}
footerLabel = UILabel()
footerLabel?.text = text
footerLabel?.textColor = footerColor
footerLabel?.textAlignment = .center
}
// MARK: -Get Frame
fileprivate func getBackGroundFrame(_ view : UIView) -> CGRect
{
let sideMargin:CGFloat = 20.0
var side = progressIndicator!.frame.height + sideMargin
if titleLabel?.text != nil && !isCleanedStringEmpty((titleLabel?.text)!)
{
side = progressIndicator!.frame.height + titleLabel!.frame.width
}
else if (footerLabel?.text != nil && !isCleanedStringEmpty((footerLabel?.text)!))
{
side = progressIndicator!.frame.height + footerLabel!.frame.width
}
let originX = view.center.x - (side/2)
let originY = view.center.y - (side/2)
return CGRect(x: originX, y: originY, width: side, height: side)
}
// MARK: Get Size
fileprivate func getLabelSize() -> CGSize
{
let width = progressIndicator!.frame.width * 3
let height = progressIndicator!.frame.height / 1.5
return CGSize(width: width, height: height)
}
// MARK: -Get Origin
fileprivate func getIndicatorOrigin(_ view : UIView, activityIndicatorView indicator : UIActivityIndicatorView) -> CGPoint
{
let side = indicator.frame.size.height
let originX = (view.bounds.width/2) - (side/2)
let originY = (view.bounds.height/2) - (side/2)
return CGPoint(x: originX, y: originY)
}
fileprivate func getHeaderOrigin(_ view : UIView) -> CGPoint
{
let width = titleLabel!.frame.size.width
let originX = (view.bounds.width/2) - (width/2)
return CGPoint(x: originX, y: 1)
}
fileprivate func getFooterOrigin(_ view : UIView) -> CGPoint
{
let width = footerLabel!.frame.width
let height = footerLabel!.frame.height
let originX = (view.bounds.width/2) - (width/2)
let originY = view.frame.height - (height + 1)
return CGPoint(x: originX, y: originY)
}
fileprivate func isCleanedStringEmpty(_ string: String) -> Bool
{
let cleanString = string.trimmingCharacters(in: .whitespacesAndNewlines)
return cleanString.isEmpty
}
// MARK: -Set Font
func boldFontWithFont(_ font : UIFont?) -> UIFont
{
let fontDescriptor : UIFontDescriptor = font!.fontDescriptor.withSymbolicTraits(.traitBold)!
return UIFont(descriptor: fontDescriptor, size: 0)
}
/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
override func drawRect(rect: CGRect)
{
// Drawing code
}
*/
}