gitextract_i9tucx6a/ ├── .gitignore ├── JYCarousel/ │ ├── App/ │ │ ├── AppDelegate.h │ │ └── AppDelegate.m │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── default.imageset/ │ │ │ └── Contents.json │ │ └── images/ │ │ ├── 1.imageset/ │ │ │ └── Contents.json │ │ ├── 2.imageset/ │ │ │ └── Contents.json │ │ ├── 3.imageset/ │ │ │ └── Contents.json │ │ ├── 4.imageset/ │ │ │ └── Contents.json │ │ ├── 5.imageset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── JYCarousel/ │ │ ├── JYCarousel.h │ │ ├── JYCarousel.m │ │ ├── JYConfiguration.h │ │ ├── JYConfiguration.m │ │ ├── JYImageCache.h │ │ ├── JYImageCache.m │ │ ├── JYImageDownloader.h │ │ ├── JYImageDownloader.m │ │ ├── JYPageControl.h │ │ ├── JYPageControl.m │ │ ├── JYTitleLabel.h │ │ ├── JYTitleLabel.m │ │ ├── JYWeakTimer.h │ │ ├── JYWeakTimer.m │ │ ├── UIImageView+JYImageViewManager.h │ │ └── UIImageView+JYImageViewManager.m │ ├── ViewController/ │ │ ├── CarouselTableViewCell.h │ │ ├── CarouselTableViewCell.m │ │ ├── CarouselTableViewCell.xib │ │ ├── DemoViewController.h │ │ ├── DemoViewController.m │ │ ├── DemoViewController.xib │ │ ├── RootViewController.h │ │ ├── RootViewController.m │ │ └── RootViewController.xib │ └── main.m ├── JYCarousel.podspec ├── JYCarousel.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata ├── LICENSE └── README.md