- Interface builder designable
- Highly customizable and flexible
- Easy to use
- Written in Swift
- Install CocoaPods
- Add this repo to your
Podfile
target 'Example' do
# IMPORTANT: Make sure use_frameworks! is included at the top of the file
use_frameworks!
platform :ios, '8.0'
pod 'MKMagneticProgress'
end
- Run
pod install
- Open up the
.xcworkspace
that CocoaPods created - Done!
Simply download the MKMagneticProgress.swift
file from here into your project, make sure you point to your projects target
Simply drag a UIView
into your storyboard. Make sure to subclass MKMagneticProgress
and that the module points MKMagneticProgress
.
Design your heart out
import MKMagneticProgress
@IBOutlet weak var magProgress:MKMagneticProgress!
override func viewDidLoad() {
magProgress.setProgress(progress: 0.5, animated: true)
magProgress.progressShapeColor = UIColor.blue
magProgress.backgroundShapeColor = UIColor.yellow
magProgress.titleColor = UIColor.red
magProgress.percentColor = UIColor.black
magProgress.lineWidth = 10
magProgress.orientation = .top
magProgress.lineCap = .round
magProgress.title = "Title"
magProgress.percentLabelFormat = "%.2f%%"
}
Take a look at the example project over here
- Download it
- Open the
Example.xcworkspace
in Xcode - Enjoy!
Moayad Al kouz, [email protected]
Twitter : @malkouzMKMagneticProgress is available under the MIT license. See the LICENSE file for more info.