├── .gitignore ├── .swift-version ├── .travis.yml ├── CreolePriceSelectionView.podspec ├── CreolePriceSelectionView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── CreolePriceSelectionView.h │ └── CreolePriceSelectionView.m ├── Example ├── CreolePriceSelectionView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CreolePriceSelectionView-Example.xcscheme ├── CreolePriceSelectionView.xcworkspace │ └── contents.xcworkspacedata ├── CreolePriceSelectionView │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CreolePriceSelectionView-Info.plist │ ├── CreolePriceSelectionView-Prefix.pch │ ├── CreolePriceSelectionViewAppDelegate.h │ ├── CreolePriceSelectionViewAppDelegate.m │ ├── CreolePriceSelectionViewViewController.h │ ├── CreolePriceSelectionViewViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── CreolePriceSelectionView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── Target Support Files │ │ ├── CreolePriceSelectionView │ │ │ ├── CreolePriceSelectionView-dummy.m │ │ │ ├── CreolePriceSelectionView-prefix.pch │ │ │ ├── CreolePriceSelectionView-umbrella.h │ │ │ ├── CreolePriceSelectionView.modulemap │ │ │ ├── CreolePriceSelectionView.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-CreolePriceSelectionView_Example │ │ │ ├── Info.plist │ │ │ ├── Pods-CreolePriceSelectionView_Example-acknowledgements.markdown │ │ │ ├── Pods-CreolePriceSelectionView_Example-acknowledgements.plist │ │ │ ├── Pods-CreolePriceSelectionView_Example-dummy.m │ │ │ ├── Pods-CreolePriceSelectionView_Example-frameworks.sh │ │ │ ├── Pods-CreolePriceSelectionView_Example-resources.sh │ │ │ ├── Pods-CreolePriceSelectionView_Example-umbrella.h │ │ │ ├── Pods-CreolePriceSelectionView_Example.debug.xcconfig │ │ │ ├── Pods-CreolePriceSelectionView_Example.modulemap │ │ │ └── Pods-CreolePriceSelectionView_Example.release.xcconfig │ │ ├── Pods-CreolePriceSelectionView_Tests │ │ │ ├── Info.plist │ │ │ ├── Pods-CreolePriceSelectionView_Tests-acknowledgements.markdown │ │ │ ├── Pods-CreolePriceSelectionView_Tests-acknowledgements.plist │ │ │ ├── Pods-CreolePriceSelectionView_Tests-dummy.m │ │ │ ├── Pods-CreolePriceSelectionView_Tests-frameworks.sh │ │ │ ├── Pods-CreolePriceSelectionView_Tests-resources.sh │ │ │ ├── Pods-CreolePriceSelectionView_Tests-umbrella.h │ │ │ ├── Pods-CreolePriceSelectionView_Tests.debug.xcconfig │ │ │ ├── Pods-CreolePriceSelectionView_Tests.modulemap │ │ │ └── Pods-CreolePriceSelectionView_Tests.release.xcconfig │ │ └── iCarousel │ │ │ ├── Info.plist │ │ │ ├── iCarousel-dummy.m │ │ │ ├── iCarousel-prefix.pch │ │ │ ├── iCarousel-umbrella.h │ │ │ ├── iCarousel.modulemap │ │ │ └── iCarousel.xcconfig │ └── iCarousel │ │ ├── LICENCE.md │ │ ├── README.md │ │ └── iCarousel │ │ ├── iCarousel.h │ │ └── iCarousel.m └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 2.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/.travis.yml -------------------------------------------------------------------------------- /CreolePriceSelectionView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/CreolePriceSelectionView.podspec -------------------------------------------------------------------------------- /CreolePriceSelectionView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CreolePriceSelectionView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CreolePriceSelectionView/Classes/CreolePriceSelectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/CreolePriceSelectionView/Classes/CreolePriceSelectionView.h -------------------------------------------------------------------------------- /CreolePriceSelectionView/Classes/CreolePriceSelectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/CreolePriceSelectionView/Classes/CreolePriceSelectionView.m -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView.xcodeproj/xcshareddata/xcschemes/CreolePriceSelectionView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView.xcodeproj/xcshareddata/xcschemes/CreolePriceSelectionView-Example.xcscheme -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView/CreolePriceSelectionView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView/CreolePriceSelectionView-Info.plist -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView/CreolePriceSelectionView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView/CreolePriceSelectionView-Prefix.pch -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView/CreolePriceSelectionViewAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView/CreolePriceSelectionViewAppDelegate.h -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView/CreolePriceSelectionViewAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView/CreolePriceSelectionViewAppDelegate.m -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView/CreolePriceSelectionViewViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView/CreolePriceSelectionViewViewController.h -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView/CreolePriceSelectionViewViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView/CreolePriceSelectionViewViewController.m -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/CreolePriceSelectionView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/CreolePriceSelectionView/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CreolePriceSelectionView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Local Podspecs/CreolePriceSelectionView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CreolePriceSelectionView/CreolePriceSelectionView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/CreolePriceSelectionView/CreolePriceSelectionView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CreolePriceSelectionView/CreolePriceSelectionView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/CreolePriceSelectionView/CreolePriceSelectionView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CreolePriceSelectionView/CreolePriceSelectionView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/CreolePriceSelectionView/CreolePriceSelectionView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CreolePriceSelectionView/CreolePriceSelectionView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/CreolePriceSelectionView/CreolePriceSelectionView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CreolePriceSelectionView/CreolePriceSelectionView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/CreolePriceSelectionView/CreolePriceSelectionView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CreolePriceSelectionView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/CreolePriceSelectionView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Example/Pods-CreolePriceSelectionView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/Pods-CreolePriceSelectionView_Tests/Pods-CreolePriceSelectionView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iCarousel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/iCarousel/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iCarousel/iCarousel-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/iCarousel/iCarousel-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iCarousel/iCarousel-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/iCarousel/iCarousel-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iCarousel/iCarousel-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/iCarousel/iCarousel-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iCarousel/iCarousel.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/iCarousel/iCarousel.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iCarousel/iCarousel.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/Target Support Files/iCarousel/iCarousel.xcconfig -------------------------------------------------------------------------------- /Example/Pods/iCarousel/LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/iCarousel/LICENCE.md -------------------------------------------------------------------------------- /Example/Pods/iCarousel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/iCarousel/README.md -------------------------------------------------------------------------------- /Example/Pods/iCarousel/iCarousel/iCarousel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/iCarousel/iCarousel/iCarousel.h -------------------------------------------------------------------------------- /Example/Pods/iCarousel/iCarousel/iCarousel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Pods/iCarousel/iCarousel/iCarousel.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NirmalsinhRathod/CreolePriceSelectionView/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------