Skip to content

zxincrash/ZXLoadingView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ZXLoadingView

CI Status Version License Platform Join the chat at https://gitter.im/zxin2928/ZXLoadingView

image

Example

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.

Requirements

swift4.0

Installation

ZXLoadingView is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'ZXLoadingView'

Author

zxin2928, zxin2928@icloud.com

License

ZXLoadingView is available under the MIT license. See the LICENSE file for more info.