├── 2.gif ├── LICENSE ├── LLCycleScrollView.podspec ├── LLCycleScrollView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── LvJianfeng.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── AndyChen.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── LvJianfeng.xcuserdatad │ └── xcschemes │ │ ├── LLCycleScrollView.xcscheme │ │ └── xcschememanagement.plist │ └── jax.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── LLCycleScrollView.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ ├── AndyChen.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ ├── LvJianfeng.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── jax.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── LLCycleScrollView ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── dot.imageset │ │ ├── Contents.json │ │ └── dot.png │ ├── dottest.imageset │ │ ├── Contents.json │ │ └── dottest.png │ ├── ico-two-left-arrow.imageset │ │ ├── Contents.json │ │ └── ico-two-left-arrow.png │ ├── ico-two-right-arrow.imageset │ │ ├── Contents.json │ │ └── ico-two-right-arrow.png │ ├── iconfont-arrow-left.imageset │ │ ├── Contents.json │ │ └── iconfont-arrow-left.png │ ├── iconfont-arrow-right.imageset │ │ ├── Contents.json │ │ └── iconfont-arrow-right.png │ ├── s1.imageset │ │ ├── Contents.json │ │ └── s1.jpg │ └── s2.imageset │ │ ├── Contents.json │ │ └── s2.jpg ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── TableViewController.swift ├── ViewController.swift └── s3.jpg ├── Lib ├── LLCycleScrollView.bundle │ ├── Root.plist │ ├── en.lproj │ │ └── Root.strings │ ├── lldotActive.png │ ├── lldotInActive.png │ └── llplaceholder.png └── LLCycleScrollView │ ├── LLCycleScrollView.swift │ ├── LLCycleScrollViewCell.swift │ ├── LLFilledPageControl.swift │ ├── LLImagePageControl.swift │ ├── LLPillPageControl.swift │ ├── LLSnakePageControl.swift │ └── LLViewExtensions.swift ├── Podfile ├── Podfile.lock ├── Pods ├── Kingfisher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Cache │ │ ├── CacheSerializer.swift │ │ ├── DiskStorage.swift │ │ ├── FormatIndicatedCacheSerializer.swift │ │ ├── ImageCache.swift │ │ ├── MemoryStorage.swift │ │ └── Storage.swift │ │ ├── Extensions │ │ ├── ImageView+Kingfisher.swift │ │ └── UIButton+Kingfisher.swift │ │ ├── General │ │ ├── Deprecated.swift │ │ ├── ImageSource │ │ │ ├── ImageDataProvider.swift │ │ │ ├── Resource.swift │ │ │ └── Source.swift │ │ ├── Kingfisher.swift │ │ ├── KingfisherError.swift │ │ ├── KingfisherManager.swift │ │ └── KingfisherOptionsInfo.swift │ │ ├── Image │ │ ├── Filter.swift │ │ ├── GIFAnimatedImage.swift │ │ ├── Image.swift │ │ ├── ImageDrawing.swift │ │ ├── ImageFormat.swift │ │ ├── ImageProcessor.swift │ │ ├── ImageProgressive.swift │ │ ├── ImageTransition.swift │ │ └── Placeholder.swift │ │ ├── Kingfisher.h │ │ ├── Networking │ │ ├── AuthenticationChallengeResponsable.swift │ │ ├── ImageDataProcessor.swift │ │ ├── ImageDownloader.swift │ │ ├── ImageDownloaderDelegate.swift │ │ ├── ImageModifier.swift │ │ ├── ImagePrefetcher.swift │ │ ├── RedirectHandler.swift │ │ ├── RequestModifier.swift │ │ ├── SessionDataTask.swift │ │ └── SessionDelegate.swift │ │ ├── Utility │ │ ├── Box.swift │ │ ├── CallbackQueue.swift │ │ ├── Delegate.swift │ │ ├── ExtensionHelpers.swift │ │ ├── Result.swift │ │ ├── Runtime.swift │ │ ├── SizeExtensions.swift │ │ └── String+MD5.swift │ │ └── Views │ │ ├── AnimatedImageView.swift │ │ └── Indicator.swift ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── AndyChen.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ ├── LvJianfeng.xcuserdatad │ │ └── xcschemes │ │ │ ├── Kingfisher.xcscheme │ │ │ ├── Pods-LLCycleScrollView.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── jax.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── Target Support Files │ ├── Kingfisher │ ├── Info.plist │ ├── Kingfisher-dummy.m │ ├── Kingfisher-prefix.pch │ ├── Kingfisher-umbrella.h │ ├── Kingfisher.modulemap │ └── Kingfisher.xcconfig │ └── Pods-LLCycleScrollView │ ├── Info.plist │ ├── Pods-LLCycleScrollView-acknowledgements.markdown │ ├── Pods-LLCycleScrollView-acknowledgements.plist │ ├── Pods-LLCycleScrollView-dummy.m │ ├── Pods-LLCycleScrollView-frameworks.sh │ ├── Pods-LLCycleScrollView-resources.sh │ ├── Pods-LLCycleScrollView-umbrella.h │ ├── Pods-LLCycleScrollView.debug.xcconfig │ ├── Pods-LLCycleScrollView.modulemap │ └── Pods-LLCycleScrollView.release.xcconfig ├── README.md └── screen.gif /2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/2.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LICENSE -------------------------------------------------------------------------------- /LLCycleScrollView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.podspec -------------------------------------------------------------------------------- /LLCycleScrollView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LLCycleScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LLCycleScrollView.xcodeproj/project.xcworkspace/xcuserdata/LvJianfeng.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcodeproj/project.xcworkspace/xcuserdata/LvJianfeng.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LLCycleScrollView.xcodeproj/xcuserdata/AndyChen.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcodeproj/xcuserdata/AndyChen.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LLCycleScrollView.xcodeproj/xcuserdata/LvJianfeng.xcuserdatad/xcschemes/LLCycleScrollView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcodeproj/xcuserdata/LvJianfeng.xcuserdatad/xcschemes/LLCycleScrollView.xcscheme -------------------------------------------------------------------------------- /LLCycleScrollView.xcodeproj/xcuserdata/LvJianfeng.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcodeproj/xcuserdata/LvJianfeng.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LLCycleScrollView.xcodeproj/xcuserdata/jax.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcodeproj/xcuserdata/jax.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LLCycleScrollView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LLCycleScrollView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LLCycleScrollView.xcworkspace/xcuserdata/AndyChen.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcworkspace/xcuserdata/AndyChen.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LLCycleScrollView.xcworkspace/xcuserdata/AndyChen.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcworkspace/xcuserdata/AndyChen.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /LLCycleScrollView.xcworkspace/xcuserdata/LvJianfeng.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcworkspace/xcuserdata/LvJianfeng.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LLCycleScrollView.xcworkspace/xcuserdata/LvJianfeng.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcworkspace/xcuserdata/LvJianfeng.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /LLCycleScrollView.xcworkspace/xcuserdata/jax.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView.xcworkspace/xcuserdata/jax.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LLCycleScrollView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/AppDelegate.swift -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/dot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/dot.imageset/Contents.json -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/dot.imageset/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/dot.imageset/dot.png -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/dottest.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/dottest.imageset/Contents.json -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/dottest.imageset/dottest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/dottest.imageset/dottest.png -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/ico-two-left-arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/ico-two-left-arrow.imageset/Contents.json -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/ico-two-left-arrow.imageset/ico-two-left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/ico-two-left-arrow.imageset/ico-two-left-arrow.png -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/ico-two-right-arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/ico-two-right-arrow.imageset/Contents.json -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/ico-two-right-arrow.imageset/ico-two-right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/ico-two-right-arrow.imageset/ico-two-right-arrow.png -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/iconfont-arrow-left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/iconfont-arrow-left.imageset/Contents.json -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/iconfont-arrow-left.imageset/iconfont-arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/iconfont-arrow-left.imageset/iconfont-arrow-left.png -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/iconfont-arrow-right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/iconfont-arrow-right.imageset/Contents.json -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/iconfont-arrow-right.imageset/iconfont-arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/iconfont-arrow-right.imageset/iconfont-arrow-right.png -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/s1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/s1.imageset/Contents.json -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/s1.imageset/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/s1.imageset/s1.jpg -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/s2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/s2.imageset/Contents.json -------------------------------------------------------------------------------- /LLCycleScrollView/Assets.xcassets/s2.imageset/s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Assets.xcassets/s2.imageset/s2.jpg -------------------------------------------------------------------------------- /LLCycleScrollView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LLCycleScrollView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LLCycleScrollView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/Info.plist -------------------------------------------------------------------------------- /LLCycleScrollView/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/TableViewController.swift -------------------------------------------------------------------------------- /LLCycleScrollView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/ViewController.swift -------------------------------------------------------------------------------- /LLCycleScrollView/s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/LLCycleScrollView/s3.jpg -------------------------------------------------------------------------------- /Lib/LLCycleScrollView.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Lib/LLCycleScrollView.bundle/Root.plist -------------------------------------------------------------------------------- /Lib/LLCycleScrollView.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Lib/LLCycleScrollView.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /Lib/LLCycleScrollView.bundle/lldotActive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Lib/LLCycleScrollView.bundle/lldotActive.png -------------------------------------------------------------------------------- /Lib/LLCycleScrollView.bundle/lldotInActive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Lib/LLCycleScrollView.bundle/lldotInActive.png -------------------------------------------------------------------------------- /Lib/LLCycleScrollView.bundle/llplaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Lib/LLCycleScrollView.bundle/llplaceholder.png -------------------------------------------------------------------------------- /Lib/LLCycleScrollView/LLCycleScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Lib/LLCycleScrollView/LLCycleScrollView.swift -------------------------------------------------------------------------------- /Lib/LLCycleScrollView/LLCycleScrollViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Lib/LLCycleScrollView/LLCycleScrollViewCell.swift -------------------------------------------------------------------------------- /Lib/LLCycleScrollView/LLFilledPageControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Lib/LLCycleScrollView/LLFilledPageControl.swift -------------------------------------------------------------------------------- /Lib/LLCycleScrollView/LLImagePageControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Lib/LLCycleScrollView/LLImagePageControl.swift -------------------------------------------------------------------------------- /Lib/LLCycleScrollView/LLPillPageControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Lib/LLCycleScrollView/LLPillPageControl.swift -------------------------------------------------------------------------------- /Lib/LLCycleScrollView/LLSnakePageControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Lib/LLCycleScrollView/LLSnakePageControl.swift -------------------------------------------------------------------------------- /Lib/LLCycleScrollView/LLViewExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Lib/LLCycleScrollView/LLViewExtensions.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Kingfisher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/LICENSE -------------------------------------------------------------------------------- /Pods/Kingfisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/README.md -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/CacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/DiskStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Cache/DiskStorage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Cache/ImageCache.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/MemoryStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Cache/Storage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/General/Deprecated.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/ImageSource/Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/ImageSource/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/General/ImageSource/Source.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/General/Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KingfisherError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/General/KingfisherError.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KingfisherManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/General/KingfisherManager.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Image/Filter.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Image/Image.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageDrawing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Image/ImageDrawing.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Image/ImageFormat.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Image/ImageProcessor.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageProgressive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Image/ImageProgressive.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Image/ImageTransition.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Image/Placeholder.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Kingfisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Kingfisher.h -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImageModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Networking/ImageModifier.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/RedirectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/RequestModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Networking/RequestModifier.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/SessionDataTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Utility/Box.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/CallbackQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Delegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Utility/Delegate.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Utility/Result.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Runtime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Utility/Runtime.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/SizeExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/String+MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Utility/String+MD5.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Views/AnimatedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Views/Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Kingfisher/Sources/Views/Indicator.swift -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/AndyChen.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Pods.xcodeproj/xcuserdata/AndyChen.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/LvJianfeng.xcuserdatad/xcschemes/Kingfisher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Pods.xcodeproj/xcuserdata/LvJianfeng.xcuserdatad/xcschemes/Kingfisher.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/LvJianfeng.xcuserdatad/xcschemes/Pods-LLCycleScrollView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Pods.xcodeproj/xcuserdata/LvJianfeng.xcuserdatad/xcschemes/Pods-LLCycleScrollView.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/LvJianfeng.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Pods.xcodeproj/xcuserdata/LvJianfeng.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/jax.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Pods.xcodeproj/xcuserdata/jax.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Kingfisher/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLCycleScrollView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Pods-LLCycleScrollView/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/Pods/Target Support Files/Pods-LLCycleScrollView/Pods-LLCycleScrollView.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/README.md -------------------------------------------------------------------------------- /screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvJianfeng/LLCycleScrollView/HEAD/screen.gif --------------------------------------------------------------------------------