├── .gitignore ├── Images ├── 1.gif ├── 2.gif ├── 4.gif ├── 5.gif └── 6.gif ├── LICENSE ├── MKProgress.podspec ├── MKProgress.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── muhammadkamran.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── muhammadkamran.xcuserdatad │ └── xcschemes │ ├── MKProgress.xcscheme │ └── xcschememanagement.plist ├── MKProgress ├── CALayer+Extension.swift ├── Info.plist ├── MKActivityIndicatorView.swift ├── MKConfig.swift ├── MKLayerAnimationPersistence.swift ├── MKProgress.h ├── MKProgress.swift ├── MKProgressBackgroundView.swift ├── MKProgressBaseView.swift ├── MKProgressViewController.swift └── MKRotationView.swift ├── MKProgressExample ├── MKProgressExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── muhammadkamran.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── muhammadkamran.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── MKProgressExample.xcscheme │ │ └── xcschememanagement.plist └── MKProgressExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── Swift_logo.imageset │ │ ├── Contents.json │ │ └── Swift_logo.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Package.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/Images/1.gif -------------------------------------------------------------------------------- /Images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/Images/2.gif -------------------------------------------------------------------------------- /Images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/Images/4.gif -------------------------------------------------------------------------------- /Images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/Images/5.gif -------------------------------------------------------------------------------- /Images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/Images/6.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/LICENSE -------------------------------------------------------------------------------- /MKProgress.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress.podspec -------------------------------------------------------------------------------- /MKProgress.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MKProgress.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MKProgress.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MKProgress.xcodeproj/project.xcworkspace/xcuserdata/muhammadkamran.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress.xcodeproj/project.xcworkspace/xcuserdata/muhammadkamran.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MKProgress.xcodeproj/xcuserdata/muhammadkamran.xcuserdatad/xcschemes/MKProgress.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress.xcodeproj/xcuserdata/muhammadkamran.xcuserdatad/xcschemes/MKProgress.xcscheme -------------------------------------------------------------------------------- /MKProgress.xcodeproj/xcuserdata/muhammadkamran.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress.xcodeproj/xcuserdata/muhammadkamran.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MKProgress/CALayer+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress/CALayer+Extension.swift -------------------------------------------------------------------------------- /MKProgress/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress/Info.plist -------------------------------------------------------------------------------- /MKProgress/MKActivityIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress/MKActivityIndicatorView.swift -------------------------------------------------------------------------------- /MKProgress/MKConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress/MKConfig.swift -------------------------------------------------------------------------------- /MKProgress/MKLayerAnimationPersistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress/MKLayerAnimationPersistence.swift -------------------------------------------------------------------------------- /MKProgress/MKProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress/MKProgress.h -------------------------------------------------------------------------------- /MKProgress/MKProgress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress/MKProgress.swift -------------------------------------------------------------------------------- /MKProgress/MKProgressBackgroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress/MKProgressBackgroundView.swift -------------------------------------------------------------------------------- /MKProgress/MKProgressBaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress/MKProgressBaseView.swift -------------------------------------------------------------------------------- /MKProgress/MKProgressViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress/MKProgressViewController.swift -------------------------------------------------------------------------------- /MKProgress/MKRotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgress/MKRotationView.swift -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample.xcodeproj/project.xcworkspace/xcuserdata/muhammadkamran.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample.xcodeproj/project.xcworkspace/xcuserdata/muhammadkamran.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample.xcodeproj/xcuserdata/muhammadkamran.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample.xcodeproj/xcuserdata/muhammadkamran.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample.xcodeproj/xcuserdata/muhammadkamran.xcuserdatad/xcschemes/MKProgressExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample.xcodeproj/xcuserdata/muhammadkamran.xcuserdatad/xcschemes/MKProgressExample.xcscheme -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample.xcodeproj/xcuserdata/muhammadkamran.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample.xcodeproj/xcuserdata/muhammadkamran.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample/AppDelegate.swift -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample/Assets.xcassets/Swift_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample/Assets.xcassets/Swift_logo.imageset/Contents.json -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample/Assets.xcassets/Swift_logo.imageset/Swift_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample/Assets.xcassets/Swift_logo.imageset/Swift_logo.png -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample/Info.plist -------------------------------------------------------------------------------- /MKProgressExample/MKProgressExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/MKProgressExample/MKProgressExample/ViewController.swift -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamirana4/MKProgress/HEAD/README.md --------------------------------------------------------------------------------