├── .github └── contributing.md ├── .gitignore ├── .slather.yml ├── .travis.yml ├── Images ├── logo.png ├── screenshot_001.jpg ├── screenshot_002.jpg ├── screenshot_003.jpg ├── screenshot_004.jpg ├── screenshot_005.jpg ├── screenshot_006.jpg ├── screenshot_007.jpg ├── screenshot_008.jpg ├── screenshot_009.jpg ├── screenshot_010.jpg ├── screenshot_011.jpg ├── screenshot_012.jpg ├── screenshot_013.jpg └── screenshot_video.jpg ├── KVNProgress.podspec ├── KVNProgress.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── KVNProgress.xcscheme ├── KVNProgress ├── Base.lproj │ └── Main.storyboard ├── Categories │ ├── UIColor+KVNContrast.h │ ├── UIColor+KVNContrast.m │ ├── UIImage+KVNEmpty.h │ ├── UIImage+KVNEmpty.m │ ├── UIImage+KVNImageEffects.h │ └── UIImage+KVNImageEffects.m ├── Classes │ ├── KVNProgress.h │ ├── KVNProgress.m │ ├── KVNProgressConfiguration.h │ ├── KVNProgressConfiguration.m │ ├── KVNRotationViewController.h │ └── KVNRotationViewController.m ├── Demo │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ └── Icon-Spotlight-40@3x.png │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── iphone-4-1.png │ │ │ ├── iphone-4.png │ │ │ ├── iphone-5.png │ │ │ ├── iphone.png │ │ │ ├── launch-6-plus.png │ │ │ └── launch-6.png │ │ └── background.imageset │ │ │ ├── Contents.json │ │ │ └── background.png │ ├── KVNAppDelegate.h │ ├── KVNAppDelegate.m │ ├── KVNViewController.h │ └── KVNViewController.m ├── KVNProgress-Info.plist ├── KVNProgress-Prefix.pch ├── Resources │ └── KVNProgressView.xib ├── en.lproj │ └── InfoPlist.strings └── main.m ├── KVNProgressTests ├── KVNProgressConfigurationTestsSpec.m ├── KVNProgressTests-Info.plist ├── KVNProgressTests.m ├── KVNUIColor+KVNContrastSpec.m ├── KVNUIImage_KVNEmptySpec.m └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Podfile ├── Podfile.lock └── README.md /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/.gitignore -------------------------------------------------------------------------------- /.slather.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/.slather.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/.travis.yml -------------------------------------------------------------------------------- /Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/logo.png -------------------------------------------------------------------------------- /Images/screenshot_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_001.jpg -------------------------------------------------------------------------------- /Images/screenshot_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_002.jpg -------------------------------------------------------------------------------- /Images/screenshot_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_003.jpg -------------------------------------------------------------------------------- /Images/screenshot_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_004.jpg -------------------------------------------------------------------------------- /Images/screenshot_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_005.jpg -------------------------------------------------------------------------------- /Images/screenshot_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_006.jpg -------------------------------------------------------------------------------- /Images/screenshot_007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_007.jpg -------------------------------------------------------------------------------- /Images/screenshot_008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_008.jpg -------------------------------------------------------------------------------- /Images/screenshot_009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_009.jpg -------------------------------------------------------------------------------- /Images/screenshot_010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_010.jpg -------------------------------------------------------------------------------- /Images/screenshot_011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_011.jpg -------------------------------------------------------------------------------- /Images/screenshot_012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_012.jpg -------------------------------------------------------------------------------- /Images/screenshot_013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_013.jpg -------------------------------------------------------------------------------- /Images/screenshot_video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Images/screenshot_video.jpg -------------------------------------------------------------------------------- /KVNProgress.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress.podspec -------------------------------------------------------------------------------- /KVNProgress.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KVNProgress.xcodeproj/xcshareddata/xcschemes/KVNProgress.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress.xcodeproj/xcshareddata/xcschemes/KVNProgress.xcscheme -------------------------------------------------------------------------------- /KVNProgress/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KVNProgress/Categories/UIColor+KVNContrast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Categories/UIColor+KVNContrast.h -------------------------------------------------------------------------------- /KVNProgress/Categories/UIColor+KVNContrast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Categories/UIColor+KVNContrast.m -------------------------------------------------------------------------------- /KVNProgress/Categories/UIImage+KVNEmpty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Categories/UIImage+KVNEmpty.h -------------------------------------------------------------------------------- /KVNProgress/Categories/UIImage+KVNEmpty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Categories/UIImage+KVNEmpty.m -------------------------------------------------------------------------------- /KVNProgress/Categories/UIImage+KVNImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Categories/UIImage+KVNImageEffects.h -------------------------------------------------------------------------------- /KVNProgress/Categories/UIImage+KVNImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Categories/UIImage+KVNImageEffects.m -------------------------------------------------------------------------------- /KVNProgress/Classes/KVNProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Classes/KVNProgress.h -------------------------------------------------------------------------------- /KVNProgress/Classes/KVNProgress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Classes/KVNProgress.m -------------------------------------------------------------------------------- /KVNProgress/Classes/KVNProgressConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Classes/KVNProgressConfiguration.h -------------------------------------------------------------------------------- /KVNProgress/Classes/KVNProgressConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Classes/KVNProgressConfiguration.m -------------------------------------------------------------------------------- /KVNProgress/Classes/KVNRotationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Classes/KVNRotationViewController.h -------------------------------------------------------------------------------- /KVNProgress/Classes/KVNRotationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Classes/KVNRotationViewController.m -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/iphone-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/iphone-4-1.png -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/iphone-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/iphone-4.png -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/iphone-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/iphone-5.png -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/iphone.png -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/launch-6-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/launch-6-plus.png -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/launch-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/LaunchImage.launchimage/launch-6.png -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/background.imageset/Contents.json -------------------------------------------------------------------------------- /KVNProgress/Demo/Images.xcassets/background.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/Images.xcassets/background.imageset/background.png -------------------------------------------------------------------------------- /KVNProgress/Demo/KVNAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/KVNAppDelegate.h -------------------------------------------------------------------------------- /KVNProgress/Demo/KVNAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/KVNAppDelegate.m -------------------------------------------------------------------------------- /KVNProgress/Demo/KVNViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/KVNViewController.h -------------------------------------------------------------------------------- /KVNProgress/Demo/KVNViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Demo/KVNViewController.m -------------------------------------------------------------------------------- /KVNProgress/KVNProgress-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/KVNProgress-Info.plist -------------------------------------------------------------------------------- /KVNProgress/KVNProgress-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/KVNProgress-Prefix.pch -------------------------------------------------------------------------------- /KVNProgress/Resources/KVNProgressView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/Resources/KVNProgressView.xib -------------------------------------------------------------------------------- /KVNProgress/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /KVNProgress/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgress/main.m -------------------------------------------------------------------------------- /KVNProgressTests/KVNProgressConfigurationTestsSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgressTests/KVNProgressConfigurationTestsSpec.m -------------------------------------------------------------------------------- /KVNProgressTests/KVNProgressTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgressTests/KVNProgressTests-Info.plist -------------------------------------------------------------------------------- /KVNProgressTests/KVNProgressTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgressTests/KVNProgressTests.m -------------------------------------------------------------------------------- /KVNProgressTests/KVNUIColor+KVNContrastSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgressTests/KVNUIColor+KVNContrastSpec.m -------------------------------------------------------------------------------- /KVNProgressTests/KVNUIImage_KVNEmptySpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/KVNProgressTests/KVNUIImage_KVNEmptySpec.m -------------------------------------------------------------------------------- /KVNProgressTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssistoLab/KVNProgress/HEAD/README.md --------------------------------------------------------------------------------