To run the example project directory.
// Initialize the progress view
let loadingView:ZXLoadingView = ZXLoadingView.init(frame:CGRect.init(x: self.view.center.x, y: self.view.center.y, width: 100, height: 100))
// Set the line width of the loadingView
loadingView.lineWidth = 2.0
// Set the tint color of the loadingView
loadingView.tintColor = .red
// Add it as a subview
self.view.addSubview(loadingView)
...
// Start & stop animations
loadingView.startAnimating()
loadingView.stopAnimating()
Also Support Xib & StoryBoard
The lineWidth
and tintColor
properties can even be set after animating has been started, which you can observe in the included example project.
swift4.0
ZXLoadingView is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'ZXLoadingView'
zxin2928, zxin2928@icloud.com
ZXLoadingView is available under the MIT license. See the LICENSE file for more info.