├── .gitignore ├── ASAnyCurlController.podspec ├── ASAnyCurlController ├── ASAnyCurlController.h └── ASAnyCurlController.m ├── Demo ├── AnyCurlControllerDemo.xcodeproj │ └── project.pbxproj ├── AnyCurlControllerDemo │ └── Sources │ │ ├── AnyCurlControllerDemo-Info.plist │ │ ├── AnyCurlControllerDemo-Prefix.pch │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── DemoController.h │ │ ├── DemoController.m │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── InfoPlist.strings │ │ ├── Main.storyboard │ │ └── main.m ├── AnyCurlViewDemo.xcodeproj │ └── project.pbxproj ├── AnyCurlViewDemo │ └── Sources │ │ ├── AnyCurlViewDemo-Info.plist │ │ ├── AnyCurlViewDemo-Prefix.pch │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── DemoController.h │ │ ├── DemoController.m │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── InfoPlist.strings │ │ ├── Main.storyboard │ │ └── main.m └── Resources │ ├── arrowDown.png │ ├── arrowDown@2x.png │ ├── arrowLeft.png │ ├── arrowLeft@2x.png │ ├── arrowRight.png │ ├── arrowRight@2x.png │ ├── arrowUp.png │ └── arrowUp@2x.png ├── Readme.md ├── Screenshots ├── iPhoneVideo.gif └── peterCurl.jpg └── license /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/.gitignore -------------------------------------------------------------------------------- /ASAnyCurlController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/ASAnyCurlController.podspec -------------------------------------------------------------------------------- /ASAnyCurlController/ASAnyCurlController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/ASAnyCurlController/ASAnyCurlController.h -------------------------------------------------------------------------------- /ASAnyCurlController/ASAnyCurlController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/ASAnyCurlController/ASAnyCurlController.m -------------------------------------------------------------------------------- /Demo/AnyCurlControllerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlControllerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/AnyCurlControllerDemo/Sources/AnyCurlControllerDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlControllerDemo/Sources/AnyCurlControllerDemo-Info.plist -------------------------------------------------------------------------------- /Demo/AnyCurlControllerDemo/Sources/AnyCurlControllerDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlControllerDemo/Sources/AnyCurlControllerDemo-Prefix.pch -------------------------------------------------------------------------------- /Demo/AnyCurlControllerDemo/Sources/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlControllerDemo/Sources/AppDelegate.h -------------------------------------------------------------------------------- /Demo/AnyCurlControllerDemo/Sources/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlControllerDemo/Sources/AppDelegate.m -------------------------------------------------------------------------------- /Demo/AnyCurlControllerDemo/Sources/DemoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlControllerDemo/Sources/DemoController.h -------------------------------------------------------------------------------- /Demo/AnyCurlControllerDemo/Sources/DemoController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlControllerDemo/Sources/DemoController.m -------------------------------------------------------------------------------- /Demo/AnyCurlControllerDemo/Sources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlControllerDemo/Sources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/AnyCurlControllerDemo/Sources/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlControllerDemo/Sources/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Demo/AnyCurlControllerDemo/Sources/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/AnyCurlControllerDemo/Sources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlControllerDemo/Sources/Main.storyboard -------------------------------------------------------------------------------- /Demo/AnyCurlControllerDemo/Sources/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlControllerDemo/Sources/main.m -------------------------------------------------------------------------------- /Demo/AnyCurlViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/AnyCurlViewDemo/Sources/AnyCurlViewDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlViewDemo/Sources/AnyCurlViewDemo-Info.plist -------------------------------------------------------------------------------- /Demo/AnyCurlViewDemo/Sources/AnyCurlViewDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlViewDemo/Sources/AnyCurlViewDemo-Prefix.pch -------------------------------------------------------------------------------- /Demo/AnyCurlViewDemo/Sources/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlViewDemo/Sources/AppDelegate.h -------------------------------------------------------------------------------- /Demo/AnyCurlViewDemo/Sources/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlViewDemo/Sources/AppDelegate.m -------------------------------------------------------------------------------- /Demo/AnyCurlViewDemo/Sources/DemoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlViewDemo/Sources/DemoController.h -------------------------------------------------------------------------------- /Demo/AnyCurlViewDemo/Sources/DemoController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlViewDemo/Sources/DemoController.m -------------------------------------------------------------------------------- /Demo/AnyCurlViewDemo/Sources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlViewDemo/Sources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/AnyCurlViewDemo/Sources/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlViewDemo/Sources/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Demo/AnyCurlViewDemo/Sources/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/AnyCurlViewDemo/Sources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlViewDemo/Sources/Main.storyboard -------------------------------------------------------------------------------- /Demo/AnyCurlViewDemo/Sources/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/AnyCurlViewDemo/Sources/main.m -------------------------------------------------------------------------------- /Demo/Resources/arrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/Resources/arrowDown.png -------------------------------------------------------------------------------- /Demo/Resources/arrowDown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/Resources/arrowDown@2x.png -------------------------------------------------------------------------------- /Demo/Resources/arrowLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/Resources/arrowLeft.png -------------------------------------------------------------------------------- /Demo/Resources/arrowLeft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/Resources/arrowLeft@2x.png -------------------------------------------------------------------------------- /Demo/Resources/arrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/Resources/arrowRight.png -------------------------------------------------------------------------------- /Demo/Resources/arrowRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/Resources/arrowRight@2x.png -------------------------------------------------------------------------------- /Demo/Resources/arrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/Resources/arrowUp.png -------------------------------------------------------------------------------- /Demo/Resources/arrowUp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Demo/Resources/arrowUp@2x.png -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Readme.md -------------------------------------------------------------------------------- /Screenshots/iPhoneVideo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Screenshots/iPhoneVideo.gif -------------------------------------------------------------------------------- /Screenshots/peterCurl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/Screenshots/peterCurl.jpg -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autresphere/ASAnyCurlController/HEAD/license --------------------------------------------------------------------------------