├── .travis.yml ├── KASlideShow.podspec ├── KASlideShow.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── KASlideShow.xccheckout │ └── xcuserdata │ │ ├── Alex.xcuserdatad │ │ └── WorkspaceSettings.xcsettings │ │ ├── acreuzot.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── alexiscreuzot.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── developer.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── KASlideShow.xcscheme └── xcuserdata │ ├── Alex.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── acreuzot.xcuserdatad │ └── xcschemes │ │ ├── KASlideShow.xcscheme │ │ └── xcschememanagement.plist │ ├── alexiscreuzot.xcuserdatad │ └── xcschemes │ │ ├── KASlideShow.xcscheme │ │ └── xcschememanagement.plist │ ├── developer.xcuserdatad │ └── xcschemes │ │ ├── KASlideShow.xcscheme │ │ └── xcschememanagement.plist │ ├── glenruhl.xcuserdatad │ └── xcschemes │ │ ├── KASlideShow.xcscheme │ │ └── xcschememanagement.plist │ └── mirkobabic.xcuserdatad │ └── xcschemes │ ├── KASlideShow.xcscheme │ └── xcschememanagement.plist ├── KASlideShow.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ ├── alex.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── mirkobabic.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── KASlideShow ├── Demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── KASlideShow-Info.plist │ ├── KASlideShow-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── KASlideShow.h ├── KASlideShow.m └── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ ├── Private │ │ └── SDWebImage │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ └── Public │ │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── SDImageCache.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ └── UIView+WebCacheOperation.h ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── alex.xcuserdatad │ │ └── xcschemes │ │ │ ├── Pods-KASlideShow.xcscheme │ │ │ ├── SDWebImage.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── mirkobabic.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-KASlideShow.xcscheme │ │ ├── SDWebImage.xcscheme │ │ └── xcschememanagement.plist ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDecoder.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m └── Target Support Files │ ├── Pods-KASlideShow │ ├── Pods-KASlideShow-acknowledgements.markdown │ ├── Pods-KASlideShow-acknowledgements.plist │ ├── Pods-KASlideShow-dummy.m │ ├── Pods-KASlideShow-frameworks.sh │ ├── Pods-KASlideShow-resources.sh │ ├── Pods-KASlideShow.debug.xcconfig │ └── Pods-KASlideShow.release.xcconfig │ └── SDWebImage │ ├── SDWebImage-dummy.m │ ├── SDWebImage-prefix.pch │ └── SDWebImage.xcconfig ├── README.md ├── test_1.jpg ├── test_2.jpg ├── test_3.jpg └── test_4.jpg /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/.travis.yml -------------------------------------------------------------------------------- /KASlideShow.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.podspec -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/project.xcworkspace/xcshareddata/KASlideShow.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/project.xcworkspace/xcshareddata/KASlideShow.xccheckout -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/project.xcworkspace/xcuserdata/Alex.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/project.xcworkspace/xcuserdata/Alex.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/project.xcworkspace/xcuserdata/acreuzot.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/project.xcworkspace/xcuserdata/acreuzot.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/project.xcworkspace/xcuserdata/alexiscreuzot.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/project.xcworkspace/xcuserdata/alexiscreuzot.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/project.xcworkspace/xcuserdata/developer.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/project.xcworkspace/xcuserdata/developer.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/xcshareddata/xcschemes/KASlideShow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/xcshareddata/xcschemes/KASlideShow.xcscheme -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/xcuserdata/Alex.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/xcuserdata/Alex.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/xcuserdata/Alex.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/xcuserdata/Alex.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/xcuserdata/acreuzot.xcuserdatad/xcschemes/KASlideShow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/xcuserdata/acreuzot.xcuserdatad/xcschemes/KASlideShow.xcscheme -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/xcuserdata/acreuzot.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/xcuserdata/acreuzot.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/xcuserdata/alexiscreuzot.xcuserdatad/xcschemes/KASlideShow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/xcuserdata/alexiscreuzot.xcuserdatad/xcschemes/KASlideShow.xcscheme -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/xcuserdata/alexiscreuzot.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/xcuserdata/alexiscreuzot.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/xcuserdata/developer.xcuserdatad/xcschemes/KASlideShow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/xcuserdata/developer.xcuserdatad/xcschemes/KASlideShow.xcscheme -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/xcuserdata/developer.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/xcuserdata/developer.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/xcuserdata/glenruhl.xcuserdatad/xcschemes/KASlideShow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/xcuserdata/glenruhl.xcuserdatad/xcschemes/KASlideShow.xcscheme -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/xcuserdata/glenruhl.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/xcuserdata/glenruhl.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/xcuserdata/mirkobabic.xcuserdatad/xcschemes/KASlideShow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/xcuserdata/mirkobabic.xcuserdatad/xcschemes/KASlideShow.xcscheme -------------------------------------------------------------------------------- /KASlideShow.xcodeproj/xcuserdata/mirkobabic.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcodeproj/xcuserdata/mirkobabic.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /KASlideShow.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KASlideShow.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /KASlideShow.xcworkspace/xcuserdata/alex.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcworkspace/xcuserdata/alex.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /KASlideShow.xcworkspace/xcuserdata/alex.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcworkspace/xcuserdata/alex.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /KASlideShow.xcworkspace/xcuserdata/mirkobabic.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow.xcworkspace/xcuserdata/mirkobabic.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /KASlideShow/Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow/Demo/AppDelegate.h -------------------------------------------------------------------------------- /KASlideShow/Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow/Demo/AppDelegate.m -------------------------------------------------------------------------------- /KASlideShow/Demo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow/Demo/Default-568h@2x.png -------------------------------------------------------------------------------- /KASlideShow/Demo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow/Demo/Default.png -------------------------------------------------------------------------------- /KASlideShow/Demo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow/Demo/Default@2x.png -------------------------------------------------------------------------------- /KASlideShow/Demo/KASlideShow-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow/Demo/KASlideShow-Info.plist -------------------------------------------------------------------------------- /KASlideShow/Demo/KASlideShow-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow/Demo/KASlideShow-Prefix.pch -------------------------------------------------------------------------------- /KASlideShow/Demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow/Demo/ViewController.h -------------------------------------------------------------------------------- /KASlideShow/Demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow/Demo/ViewController.m -------------------------------------------------------------------------------- /KASlideShow/Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow/Demo/main.m -------------------------------------------------------------------------------- /KASlideShow/KASlideShow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow/KASlideShow.h -------------------------------------------------------------------------------- /KASlideShow/KASlideShow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow/KASlideShow.m -------------------------------------------------------------------------------- /KASlideShow/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /KASlideShow/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/KASlideShow/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/Pods-KASlideShow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Pods.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/Pods-KASlideShow.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Pods.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Pods.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mirkobabic.xcuserdatad/xcschemes/Pods-KASlideShow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Pods.xcodeproj/xcuserdata/mirkobabic.xcuserdatad/xcschemes/Pods-KASlideShow.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mirkobabic.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Pods.xcodeproj/xcuserdata/mirkobabic.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mirkobabic.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Pods.xcodeproj/xcuserdata/mirkobabic.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Target Support Files/Pods-KASlideShow/Pods-KASlideShow.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/README.md -------------------------------------------------------------------------------- /test_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/test_1.jpg -------------------------------------------------------------------------------- /test_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/test_2.jpg -------------------------------------------------------------------------------- /test_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/test_3.jpg -------------------------------------------------------------------------------- /test_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiscreuzot/KASlideShow/HEAD/test_4.jpg --------------------------------------------------------------------------------