├── .DS_Store ├── HTSDCycleScrollViewDemo ├── .DS_Store ├── HTSDCycleScrollViewDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── cherongyi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── ios_zzy.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── cherongyi.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── ios_zzy.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── HTSDCycleScrollViewDemo │ ├── .DS_Store │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── img1.imageset │ │ ├── Contents.json │ │ └── img1.png │ ├── img2.imageset │ │ ├── Contents.json │ │ └── img2.png │ ├── img3.imageset │ │ ├── Contents.json │ │ └── img3.png │ └── img4.imageset │ │ ├── Contents.json │ │ └── img4.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Other ├── .DS_Store ├── normal.png └── zoom.png ├── README.md ├── SDCycleScrollView ├── PageControl │ ├── TAAbstractDotView.h │ ├── TAAbstractDotView.m │ ├── TAAnimatedDotView.h │ ├── TAAnimatedDotView.m │ ├── TADotView.h │ ├── TADotView.m │ ├── TAPageControl.h │ └── TAPageControl.m ├── SDCollectionViewCell.h ├── SDCollectionViewCell.m ├── SDCycleScrollView.h ├── SDCycleScrollView.m ├── UIView+SDExtension.h └── UIView+SDExtension.m └── SDWebImage ├── MKAnnotationView+WebCache.h ├── MKAnnotationView+WebCache.m ├── NSData+ImageContentType.h ├── NSData+ImageContentType.m ├── NSImage+WebCache.h ├── NSImage+WebCache.m ├── SDImageCache.h ├── SDImageCache.m ├── SDImageCacheConfig.h ├── SDImageCacheConfig.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 ├── UIImage+WebP.h ├── UIImage+WebP.m ├── UIImageView+HighlightedWebCache.h ├── UIImageView+HighlightedWebCache.m ├── UIImageView+WebCache.h ├── UIImageView+WebCache.m ├── UIView+WebCache.h ├── UIView+WebCache.m ├── UIView+WebCacheOperation.h └── UIView+WebCacheOperation.m /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/.DS_Store -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/.DS_Store -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/project.xcworkspace/xcuserdata/cherongyi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/project.xcworkspace/xcuserdata/cherongyi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/project.xcworkspace/xcuserdata/ios_zzy.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/project.xcworkspace/xcuserdata/ios_zzy.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/xcuserdata/cherongyi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/xcuserdata/cherongyi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/xcuserdata/cherongyi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/xcuserdata/cherongyi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/xcuserdata/ios_zzy.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/xcuserdata/ios_zzy.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/xcuserdata/ios_zzy.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo.xcodeproj/xcuserdata/ios_zzy.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/.DS_Store -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img1.imageset/Contents.json -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img1.imageset/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img1.imageset/img1.png -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img2.imageset/Contents.json -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img2.imageset/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img2.imageset/img2.png -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img3.imageset/Contents.json -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img3.imageset/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img3.imageset/img3.png -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img4.imageset/Contents.json -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img4.imageset/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Assets.xcassets/img4.imageset/img4.png -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/Info.plist -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/ViewController.h -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/ViewController.m -------------------------------------------------------------------------------- /HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/HTSDCycleScrollViewDemo/HTSDCycleScrollViewDemo/main.m -------------------------------------------------------------------------------- /Other/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/Other/.DS_Store -------------------------------------------------------------------------------- /Other/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/Other/normal.png -------------------------------------------------------------------------------- /Other/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/Other/zoom.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/README.md -------------------------------------------------------------------------------- /SDCycleScrollView/PageControl/TAAbstractDotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/PageControl/TAAbstractDotView.h -------------------------------------------------------------------------------- /SDCycleScrollView/PageControl/TAAbstractDotView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/PageControl/TAAbstractDotView.m -------------------------------------------------------------------------------- /SDCycleScrollView/PageControl/TAAnimatedDotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/PageControl/TAAnimatedDotView.h -------------------------------------------------------------------------------- /SDCycleScrollView/PageControl/TAAnimatedDotView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/PageControl/TAAnimatedDotView.m -------------------------------------------------------------------------------- /SDCycleScrollView/PageControl/TADotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/PageControl/TADotView.h -------------------------------------------------------------------------------- /SDCycleScrollView/PageControl/TADotView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/PageControl/TADotView.m -------------------------------------------------------------------------------- /SDCycleScrollView/PageControl/TAPageControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/PageControl/TAPageControl.h -------------------------------------------------------------------------------- /SDCycleScrollView/PageControl/TAPageControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/PageControl/TAPageControl.m -------------------------------------------------------------------------------- /SDCycleScrollView/SDCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/SDCollectionViewCell.h -------------------------------------------------------------------------------- /SDCycleScrollView/SDCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/SDCollectionViewCell.m -------------------------------------------------------------------------------- /SDCycleScrollView/SDCycleScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/SDCycleScrollView.h -------------------------------------------------------------------------------- /SDCycleScrollView/SDCycleScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/SDCycleScrollView.m -------------------------------------------------------------------------------- /SDCycleScrollView/UIView+SDExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/UIView+SDExtension.h -------------------------------------------------------------------------------- /SDCycleScrollView/UIView+SDExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDCycleScrollView/UIView+SDExtension.m -------------------------------------------------------------------------------- /SDWebImage/MKAnnotationView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/MKAnnotationView+WebCache.h -------------------------------------------------------------------------------- /SDWebImage/MKAnnotationView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/MKAnnotationView+WebCache.m -------------------------------------------------------------------------------- /SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /SDWebImage/NSImage+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/NSImage+WebCache.m -------------------------------------------------------------------------------- /SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /SDWebImage/SDImageCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDImageCacheConfig.m -------------------------------------------------------------------------------- /SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /SDWebImage/UIImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIImage+WebP.m -------------------------------------------------------------------------------- /SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /SDWebImage/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIView+WebCache.m -------------------------------------------------------------------------------- /SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runThor/HTSDCycleScrollView/HEAD/SDWebImage/UIView+WebCacheOperation.m --------------------------------------------------------------------------------