gitextract_q8v4ewru/ ├── .gitignore ├── Examples/ │ ├── Advanced iOS Demo/ │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselExample-Info.plist │ │ ├── iCarouselExample-Prefix.pch │ │ ├── iCarouselExample.xcodeproj/ │ │ │ └── project.pbxproj │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ └── main.m │ ├── Basic iOS Example/ │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselExample-Info.plist │ │ ├── iCarouselExample-Prefix.pch │ │ ├── iCarouselExample.xcodeproj/ │ │ │ └── project.pbxproj │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ └── main.m │ ├── Buttons Demo/ │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselButtonsDemo-Info.plist │ │ ├── iCarouselButtonsDemo-Prefix.pch │ │ ├── iCarouselButtonsDemo.xcodeproj/ │ │ │ └── project.pbxproj │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ └── main.m │ ├── Chameleon Demo/ │ │ ├── Chameleon/ │ │ │ ├── .gitignore │ │ │ ├── AVFoundation/ │ │ │ │ ├── AVFoundation.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── AVFoundation_Prefix.pch │ │ │ │ ├── Classes/ │ │ │ │ │ ├── AVAudioPlayer.h │ │ │ │ │ ├── AVAudioPlayer.m │ │ │ │ │ ├── AVAudioSession.h │ │ │ │ │ ├── AVAudioSession.m │ │ │ │ │ └── AVFoundation.h │ │ │ │ └── Info.plist │ │ │ ├── AddressBookUI/ │ │ │ │ ├── AddressBookUI.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── AddressBookUI_Prefix.pch │ │ │ │ ├── Classes/ │ │ │ │ │ ├── ABUnknownPersonViewController.h │ │ │ │ │ ├── ABUnknownPersonViewController.m │ │ │ │ │ └── AddressBookUI.h │ │ │ │ └── Info.plist │ │ │ ├── AssetsLibrary/ │ │ │ │ ├── AssetsLibrary.xcodeproj/ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── AssetsLibrary_Prefix.pch │ │ │ │ ├── Classes/ │ │ │ │ │ ├── ALAsset.h │ │ │ │ │ ├── ALAsset.m │ │ │ │ │ ├── ALAssetRepresentation.h │ │ │ │ │ ├── ALAssetRepresentation.m │ │ │ │ │ ├── ALAssetsFilter.h │ │ │ │ │ ├── ALAssetsFilter.m │ │ │ │ │ ├── ALAssetsGroup.h │ │ │ │ │ ├── ALAssetsGroup.m │ │ │ │ │ ├── ALAssetsLibrary.h │ │ │ │ │ ├── ALAssetsLibrary.m │ │ │ │ │ └── AssetsLibrary.h │ │ │ │ └── Info.plist │ │ │ ├── LICENSE │ │ │ ├── MediaPlayer/ │ │ │ │ ├── Classes/ │ │ │ │ │ ├── MPMediaPlayback.h │ │ │ │ │ ├── MPMoviePlayerController.h │ │ │ │ │ ├── MPMoviePlayerController.m │ │ │ │ │ ├── MPMusicPlayerController.h │ │ │ │ │ ├── MPMusicPlayerController.m │ │ │ │ │ ├── MediaPlayer.h │ │ │ │ │ ├── UIInternalMovieView.h │ │ │ │ │ └── UIInternalMovieView.m │ │ │ │ ├── Info.plist │ │ │ │ ├── MediaPlayer.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── MediaPlayer_Prefix.pch │ │ │ ├── MessageUI/ │ │ │ │ ├── Classes/ │ │ │ │ │ ├── MFMailComposeViewController.h │ │ │ │ │ ├── MFMailComposeViewController.m │ │ │ │ │ └── MessageUI.h │ │ │ │ ├── Info.plist │ │ │ │ ├── MFMessageComposeViewController.h │ │ │ │ ├── MFMessageComposeViewController.m │ │ │ │ ├── MessageUI.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── MessageUI_Prefix.pch │ │ │ ├── README.md │ │ │ ├── StoreKit/ │ │ │ │ ├── Classes/ │ │ │ │ │ ├── SKPayment.h │ │ │ │ │ ├── SKPayment.m │ │ │ │ │ ├── SKPaymentQueue.h │ │ │ │ │ ├── SKPaymentQueue.m │ │ │ │ │ ├── SKPaymentTransaction.h │ │ │ │ │ ├── SKPaymentTransaction.m │ │ │ │ │ ├── SKProduct.h │ │ │ │ │ ├── SKProduct.m │ │ │ │ │ ├── SKProductsRequest.h │ │ │ │ │ ├── SKProductsRequest.m │ │ │ │ │ ├── SKProductsResponse.h │ │ │ │ │ ├── SKProductsResponse.m │ │ │ │ │ ├── SKRequest.h │ │ │ │ │ ├── SKRequest.m │ │ │ │ │ └── StoreKit.h │ │ │ │ ├── Info.plist │ │ │ │ ├── StoreKit.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── StoreKit_Prefix.pch │ │ │ └── UIKit/ │ │ │ ├── .gitignore │ │ │ ├── Classes/ │ │ │ │ ├── AppKitIntegration.h │ │ │ │ ├── NSIndexPath+UITableView.h │ │ │ │ ├── NSIndexPath+UITableView.m │ │ │ │ ├── UIAcceleration.h │ │ │ │ ├── UIAcceleration.m │ │ │ │ ├── UIAccelerometer.h │ │ │ │ ├── UIAccelerometer.m │ │ │ │ ├── UIAccessibility.h │ │ │ │ ├── UIAccessibility.m │ │ │ │ ├── UIAccessibilityElement.h │ │ │ │ ├── UIAccessibilityElement.m │ │ │ │ ├── UIAction.h │ │ │ │ ├── UIAction.m │ │ │ │ ├── UIActionSheet.h │ │ │ │ ├── UIActionSheet.m │ │ │ │ ├── UIActionSheetAppKitIntegration.h │ │ │ │ ├── UIActivityIndicatorView.h │ │ │ │ ├── UIActivityIndicatorView.m │ │ │ │ ├── UIAlertView.h │ │ │ │ ├── UIAlertView.m │ │ │ │ ├── UIAppearance.h │ │ │ │ ├── UIAppearanceInstance.h │ │ │ │ ├── UIAppearanceInstance.m │ │ │ │ ├── UIAppearanceProperty.h │ │ │ │ ├── UIAppearanceProperty.m │ │ │ │ ├── UIAppearanceProxy.h │ │ │ │ ├── UIAppearanceProxy.m │ │ │ │ ├── UIApplication+UIPrivate.h │ │ │ │ ├── UIApplication.h │ │ │ │ ├── UIApplication.m │ │ │ │ ├── UIApplicationAppKitIntegration.h │ │ │ │ ├── UIApplicationDelegate.h │ │ │ │ ├── UIBackgroundTask.h │ │ │ │ ├── UIBackgroundTask.m │ │ │ │ ├── UIBarButtonItem.h │ │ │ │ ├── UIBarButtonItem.m │ │ │ │ ├── UIBarItem.h │ │ │ │ ├── UIBarItem.m │ │ │ │ ├── UIBezierPath.h │ │ │ │ ├── UIBezierPath.m │ │ │ │ ├── UIBulletGlyphGenerator.h │ │ │ │ ├── UIBulletGlyphGenerator.m │ │ │ │ ├── UIButton.h │ │ │ │ ├── UIButton.m │ │ │ │ ├── UIColor+UIPrivate.h │ │ │ │ ├── UIColor.h │ │ │ │ ├── UIColor.m │ │ │ │ ├── UIColorAppKitIntegration.h │ │ │ │ ├── UIColorRep.h │ │ │ │ ├── UIColorRep.m │ │ │ │ ├── UIControl+UIPrivate.h │ │ │ │ ├── UIControl.h │ │ │ │ ├── UIControl.m │ │ │ │ ├── UIControlAction.h │ │ │ │ ├── UIControlAction.m │ │ │ │ ├── UICustomNSClipView.h │ │ │ │ ├── UICustomNSClipView.m │ │ │ │ ├── UICustomNSTextView.h │ │ │ │ ├── UICustomNSTextView.m │ │ │ │ ├── UIDataDetectors.h │ │ │ │ ├── UIDatePicker.h │ │ │ │ ├── UIDatePicker.m │ │ │ │ ├── UIDevice.h │ │ │ │ ├── UIDevice.m │ │ │ │ ├── UIEvent+UIPrivate.h │ │ │ │ ├── UIEvent.h │ │ │ │ ├── UIEvent.m │ │ │ │ ├── UIFont+UIPrivate.h │ │ │ │ ├── UIFont.h │ │ │ │ ├── UIFont.m │ │ │ │ ├── UIFontAppKitIntegration.h │ │ │ │ ├── UIGeometry.h │ │ │ │ ├── UIGeometry.m │ │ │ │ ├── UIGestureRecognizer+UIPrivate.h │ │ │ │ ├── UIGestureRecognizer.h │ │ │ │ ├── UIGestureRecognizer.m │ │ │ │ ├── UIGestureRecognizerSubclass.h │ │ │ │ ├── UIGraphics.h │ │ │ │ ├── UIGraphics.m │ │ │ │ ├── UIImage+UIPrivate.h │ │ │ │ ├── UIImage+UIPrivate.m │ │ │ │ ├── UIImage.h │ │ │ │ ├── UIImage.m │ │ │ │ ├── UIImageAppKitIntegration.h │ │ │ │ ├── UIImageAppKitIntegration.m │ │ │ │ ├── UIImagePickerController.h │ │ │ │ ├── UIImagePickerController.m │ │ │ │ ├── UIImageRep.h │ │ │ │ ├── UIImageRep.m │ │ │ │ ├── UIImageView+UIPrivate.h │ │ │ │ ├── UIImageView.h │ │ │ │ ├── UIImageView.m │ │ │ │ ├── UIInputController.h │ │ │ │ ├── UIInputController.m │ │ │ │ ├── UIInterface.h │ │ │ │ ├── UIInterface.m │ │ │ │ ├── UIKey+UIPrivate.h │ │ │ │ ├── UIKey.h │ │ │ │ ├── UIKey.m │ │ │ │ ├── UIKit.h │ │ │ │ ├── UIKitView.h │ │ │ │ ├── UIKitView.m │ │ │ │ ├── UILabel.h │ │ │ │ ├── UILabel.m │ │ │ │ ├── UILongPressGestureRecognizer.h │ │ │ │ ├── UILongPressGestureRecognizer.m │ │ │ │ ├── UIMenuController.h │ │ │ │ ├── UIMenuController.m │ │ │ │ ├── UIMenuItem.h │ │ │ │ ├── UIMenuItem.m │ │ │ │ ├── UINSClipView.h │ │ │ │ ├── UINSClipView.m │ │ │ │ ├── UINavigationBar+UIPrivate.h │ │ │ │ ├── UINavigationBar.h │ │ │ │ ├── UINavigationBar.m │ │ │ │ ├── UINavigationController.h │ │ │ │ ├── UINavigationController.m │ │ │ │ ├── UINavigationItem+UIPrivate.h │ │ │ │ ├── UINavigationItem.h │ │ │ │ ├── UINavigationItem.m │ │ │ │ ├── UINibLoading.h │ │ │ │ ├── UINibLoading.m │ │ │ │ ├── UINinePartImage.h │ │ │ │ ├── UINinePartImage.m │ │ │ │ ├── UIPageControl.h │ │ │ │ ├── UIPageControl.m │ │ │ │ ├── UIPanGestureRecognizer.h │ │ │ │ ├── UIPanGestureRecognizer.m │ │ │ │ ├── UIPasteboard.h │ │ │ │ ├── UIPasteboard.m │ │ │ │ ├── UIPhotosAlbum.h │ │ │ │ ├── UIPhotosAlbum.m │ │ │ │ ├── UIPickerView.h │ │ │ │ ├── UIPickerView.m │ │ │ │ ├── UIPinchGestureRecognizer.h │ │ │ │ ├── UIPinchGestureRecognizer.m │ │ │ │ ├── UIPopoverController+UIPrivate.h │ │ │ │ ├── UIPopoverController.h │ │ │ │ ├── UIPopoverController.m │ │ │ │ ├── UIPopoverNSWindow.h │ │ │ │ ├── UIPopoverNSWindow.m │ │ │ │ ├── UIPopoverOverlayNSView.h │ │ │ │ ├── UIPopoverOverlayNSView.m │ │ │ │ ├── UIPopoverView.h │ │ │ │ ├── UIPopoverView.m │ │ │ │ ├── UIProgressView.h │ │ │ │ ├── UIProgressView.m │ │ │ │ ├── UIResponder.h │ │ │ │ ├── UIResponder.m │ │ │ │ ├── UIResponderAppKitIntegration.h │ │ │ │ ├── UIResponderAppKitIntegration.m │ │ │ │ ├── UIRotationGestureRecognizer.h │ │ │ │ ├── UIRotationGestureRecognizer.m │ │ │ │ ├── UIRoundedRectButton.h │ │ │ │ ├── UIRoundedRectButton.m │ │ │ │ ├── UIScreen+UIPrivate.h │ │ │ │ ├── UIScreen.h │ │ │ │ ├── UIScreen.m │ │ │ │ ├── UIScreenAppKitIntegration.h │ │ │ │ ├── UIScreenAppKitIntegration.m │ │ │ │ ├── UIScreenMode+UIPrivate.h │ │ │ │ ├── UIScreenMode.h │ │ │ │ ├── UIScreenMode.m │ │ │ │ ├── UIScrollView+UIPrivate.h │ │ │ │ ├── UIScrollView.h │ │ │ │ ├── UIScrollView.m │ │ │ │ ├── UIScrollViewAnimation.h │ │ │ │ ├── UIScrollViewAnimation.m │ │ │ │ ├── UIScrollViewAnimationDeceleration.h │ │ │ │ ├── UIScrollViewAnimationDeceleration.m │ │ │ │ ├── UIScrollViewAnimationScroll.h │ │ │ │ ├── UIScrollViewAnimationScroll.m │ │ │ │ ├── UIScrollWheelGestureRecognizer.h │ │ │ │ ├── UIScrollWheelGestureRecognizer.m │ │ │ │ ├── UIScroller.h │ │ │ │ ├── UIScroller.m │ │ │ │ ├── UISearchBar.h │ │ │ │ ├── UISearchBar.m │ │ │ │ ├── UISearchDisplayController.h │ │ │ │ ├── UISearchDisplayController.m │ │ │ │ ├── UISegmentedControl.h │ │ │ │ ├── UISegmentedControl.m │ │ │ │ ├── UISlider.h │ │ │ │ ├── UISlider.m │ │ │ │ ├── UISplitViewController.h │ │ │ │ ├── UISplitViewController.m │ │ │ │ ├── UIStringDrawing.h │ │ │ │ ├── UIStringDrawing.m │ │ │ │ ├── UISwipeGestureRecognizer.h │ │ │ │ ├── UISwipeGestureRecognizer.m │ │ │ │ ├── UISwitch.h │ │ │ │ ├── UISwitch.m │ │ │ │ ├── UITabBar.h │ │ │ │ ├── UITabBar.m │ │ │ │ ├── UITabBarController.h │ │ │ │ ├── UITabBarController.m │ │ │ │ ├── UITabBarItem.h │ │ │ │ ├── UITabBarItem.m │ │ │ │ ├── UITableView.h │ │ │ │ ├── UITableView.m │ │ │ │ ├── UITableViewCell+UIPrivate.h │ │ │ │ ├── UITableViewCell.h │ │ │ │ ├── UITableViewCell.m │ │ │ │ ├── UITableViewCellSeparator.h │ │ │ │ ├── UITableViewCellSeparator.m │ │ │ │ ├── UITableViewController.h │ │ │ │ ├── UITableViewController.m │ │ │ │ ├── UITableViewSection.h │ │ │ │ ├── UITableViewSection.m │ │ │ │ ├── UITableViewSectionLabel.h │ │ │ │ ├── UITableViewSectionLabel.m │ │ │ │ ├── UITapGestureRecognizer.h │ │ │ │ ├── UITapGestureRecognizer.m │ │ │ │ ├── UITextField.h │ │ │ │ ├── UITextField.m │ │ │ │ ├── UITextInputTraits.h │ │ │ │ ├── UITextLayer.h │ │ │ │ ├── UITextLayer.m │ │ │ │ ├── UITextView.h │ │ │ │ ├── UITextView.m │ │ │ │ ├── UIThreePartImage.h │ │ │ │ ├── UIThreePartImage.m │ │ │ │ ├── UIToolbar.h │ │ │ │ ├── UIToolbar.m │ │ │ │ ├── UIToolbarButton.h │ │ │ │ ├── UIToolbarButton.m │ │ │ │ ├── UITouch+UIPrivate.h │ │ │ │ ├── UITouch.h │ │ │ │ ├── UITouch.m │ │ │ │ ├── UITransitionView.h │ │ │ │ ├── UITransitionView.m │ │ │ │ ├── UIView+UIPrivate.h │ │ │ │ ├── UIView.h │ │ │ │ ├── UIView.m │ │ │ │ ├── UIViewAdapter.h │ │ │ │ ├── UIViewAdapter.m │ │ │ │ ├── UIViewAnimationGroup.h │ │ │ │ ├── UIViewAnimationGroup.m │ │ │ │ ├── UIViewBlockAnimationDelegate.h │ │ │ │ ├── UIViewBlockAnimationDelegate.m │ │ │ │ ├── UIViewController+UIPrivate.h │ │ │ │ ├── UIViewController.h │ │ │ │ ├── UIViewController.m │ │ │ │ ├── UIViewLayoutManager.h │ │ │ │ ├── UIViewLayoutManager.m │ │ │ │ ├── UIWebView.h │ │ │ │ ├── UIWebView.m │ │ │ │ ├── UIWindow+UIPrivate.h │ │ │ │ ├── UIWindow.h │ │ │ │ └── UIWindow.m │ │ │ ├── Info.plist │ │ │ ├── UIKit.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ └── contents.xcworkspacedata │ │ │ └── UIKit_Prefix.pch │ │ ├── iCarouselChameleonDemo/ │ │ │ ├── MacAppDelegate.h │ │ │ ├── MacAppDelegate.m │ │ │ ├── en.lproj/ │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── iCarouselChameleonDemo-Info.plist │ │ │ ├── iCarouselChameleonDemo-Prefix.pch │ │ │ ├── iCarouselExampleAppDelegate.h │ │ │ ├── iCarouselExampleAppDelegate.m │ │ │ ├── iCarouselExampleViewController.h │ │ │ ├── iCarouselExampleViewController.m │ │ │ └── main.m │ │ └── iCarouselChameleonDemo.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── Controls Demo/ │ │ ├── ItemView.xib │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselControlsDemo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ ├── iCarouselTest-Info.plist │ │ ├── iCarouselTest-Prefix.pch │ │ └── main.m │ ├── Downloads & Effects/ │ │ ├── Images.plist │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselExample-Info.plist │ │ ├── iCarouselExample-Prefix.pch │ │ ├── iCarouselExample.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ └── main.m │ ├── Dynamic Downloads/ │ │ ├── Images.plist │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselExample-Info.plist │ │ ├── iCarouselExample-Prefix.pch │ │ ├── iCarouselExample.xcodeproj/ │ │ │ └── project.pbxproj │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ └── main.m │ ├── Dynamic Image Effects/ │ │ ├── iCarouselExample/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── en.lproj/ │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── ViewController.xib │ │ │ ├── iCarouselExample-Info.plist │ │ │ ├── iCarouselExample-Prefix.pch │ │ │ └── main.m │ │ └── iCarouselExample.xcodeproj/ │ │ └── project.pbxproj │ ├── Dynamic View Reflections/ │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ ├── iCarouselReflectionsDemo-Info.plist │ │ ├── iCarouselReflectionsDemo-Prefix.pch │ │ ├── iCarouselReflectionsDemo.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── main.m │ ├── Fading Demo/ │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselExample-Info.plist │ │ ├── iCarouselExample-Prefix.pch │ │ ├── iCarouselExample.xcodeproj/ │ │ │ └── project.pbxproj │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ └── main.m │ ├── Libraries/ │ │ ├── AsyncImageView/ │ │ │ ├── AsyncImageView.h │ │ │ └── AsyncImageView.m │ │ ├── FXImageView/ │ │ │ ├── FXImageView.h │ │ │ ├── FXImageView.m │ │ │ ├── UIImage+FX.h │ │ │ └── UIImage+FX.m │ │ └── ReflectionView/ │ │ ├── ReflectionView.h │ │ └── ReflectionView.m │ ├── Mac Demo/ │ │ ├── iCarouselMac/ │ │ │ ├── en.lproj/ │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── iCarouselMac-Info.plist │ │ │ ├── iCarouselMac-Prefix.pch │ │ │ ├── iCarouselMacAppDelegate.h │ │ │ ├── iCarouselMacAppDelegate.m │ │ │ ├── iCarouselWindowController.h │ │ │ ├── iCarouselWindowController.m │ │ │ └── main.m │ │ └── iCarouselMac.xcodeproj/ │ │ └── project.pbxproj │ ├── Multiple Carousels/ │ │ ├── MultipleCarousels-Info.plist │ │ ├── MultipleCarousels-Prefix.pch │ │ ├── MultipleCarousels.xcodeproj/ │ │ │ └── project.pbxproj │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ └── main.m │ ├── Nested Carousels/ │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselExample-Info.plist │ │ ├── iCarouselExample-Prefix.pch │ │ ├── iCarouselExample.xcodeproj/ │ │ │ └── project.pbxproj │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ └── main.m │ ├── No Nib Demo/ │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ ├── iCarouselNoNibDemo-Info.plist │ │ ├── iCarouselNoNibDemo-Prefix.pch │ │ ├── iCarouselNoNibDemo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── main.m │ ├── Offsets Demo/ │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselExample-Info.plist │ │ ├── iCarouselExample-Prefix.pch │ │ ├── iCarouselExample.xcodeproj/ │ │ │ └── project.pbxproj │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ └── main.m │ ├── Options Demo/ │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselExample-Info.plist │ │ ├── iCarouselExample-Prefix.pch │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ ├── iCarouselOptionsDemo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── main.m │ ├── Paging Example/ │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselExample-Info.plist │ │ ├── iCarouselExample-Prefix.pch │ │ ├── iCarouselExample.xcodeproj/ │ │ │ └── project.pbxproj │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ └── main.m │ ├── Storyboard Demo/ │ │ ├── StoryboardExample/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── StoryboardExample-Info.plist │ │ │ ├── StoryboardExample-Prefix.pch │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── en.lproj/ │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainStoryboard.storyboard │ │ │ └── main.m │ │ └── StoryboardExample.xcodeproj/ │ │ └── project.pbxproj │ ├── Swift Example/ │ │ ├── SwiftExample/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj/ │ │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── LaunchImage.launchimage/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── background.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── page.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── SwiftExample-Bridging-Header.h │ │ │ └── ViewController.swift │ │ └── SwiftExample.xcodeproj/ │ │ └── project.pbxproj │ ├── Swift3 Example/ │ │ ├── SwiftExample/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj/ │ │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── LaunchImage.launchimage/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── background.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── page.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── SwiftExample-Bridging-Header.h │ │ │ └── ViewController.swift │ │ └── SwiftExample.xcodeproj/ │ │ └── project.pbxproj │ └── Tables Demo/ │ ├── en.lproj/ │ │ ├── InfoPlist.strings │ │ ├── MainWindow.xib │ │ └── iCarouselExampleViewController.xib │ ├── iCarouselExampleAppDelegate.h │ ├── iCarouselExampleAppDelegate.m │ ├── iCarouselExampleViewController.h │ ├── iCarouselExampleViewController.m │ ├── iCarouselTest-Info.plist │ ├── iCarouselTest-Prefix.pch │ ├── iCarouselTest.xcodeproj/ │ │ └── project.pbxproj │ └── main.m ├── LICENCE.md ├── README.md ├── Tests/ │ ├── Events/ │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── iCarouselExampleViewController.xib │ │ ├── iCarouselExampleAppDelegate.h │ │ ├── iCarouselExampleAppDelegate.m │ │ ├── iCarouselExampleViewController.h │ │ ├── iCarouselExampleViewController.m │ │ ├── iCarouselTest-Info.plist │ │ ├── iCarouselTest-Prefix.pch │ │ ├── iCarouselTest.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── main.m │ └── Scrolling/ │ ├── en.lproj/ │ │ ├── InfoPlist.strings │ │ ├── MainWindow.xib │ │ └── iCarouselExampleViewController.xib │ ├── iCarouselExampleAppDelegate.h │ ├── iCarouselExampleAppDelegate.m │ ├── iCarouselExampleViewController.h │ ├── iCarouselExampleViewController.m │ ├── iCarouselTest-Info.plist │ ├── iCarouselTest-Prefix.pch │ ├── iCarouselTest.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── main.m ├── iCarousel/ │ ├── Info.plist │ ├── iCarousel.h │ └── iCarousel.m ├── iCarousel.podspec.json ├── iCarousel.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ ├── iCarousel iOS.xcscheme │ └── iCarousel macOS.xcscheme └── iCarousel.xcworkspace/ └── contents.xcworkspacedata