├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Build │ │ │ └── iPerspective │ │ │ │ ├── UIImageView+Perspective.h │ │ │ │ └── UIImageViewPerspective.h │ │ └── Public │ │ │ └── iPerspective │ │ │ ├── UIImageView+Perspective.h │ │ │ └── UIImageViewPerspective.h │ ├── Local Podspecs │ │ └── iPerspective.podspec │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-Tests-iPerspective │ │ ├── Pods-Tests-iPerspective-Private.xcconfig │ │ ├── Pods-Tests-iPerspective-dummy.m │ │ ├── Pods-Tests-iPerspective-prefix.pch │ │ └── Pods-Tests-iPerspective.xcconfig │ │ ├── Pods-Tests │ │ ├── Pods-Tests-acknowledgements.markdown │ │ ├── Pods-Tests-acknowledgements.plist │ │ ├── Pods-Tests-dummy.m │ │ ├── Pods-Tests-environment.h │ │ ├── Pods-Tests-resources.sh │ │ ├── Pods-Tests.debug.xcconfig │ │ └── Pods-Tests.release.xcconfig │ │ ├── Pods-iPerspective-iPerspective │ │ ├── Pods-iPerspective-iPerspective-Private.xcconfig │ │ ├── Pods-iPerspective-iPerspective-dummy.m │ │ ├── Pods-iPerspective-iPerspective-prefix.pch │ │ └── Pods-iPerspective-iPerspective.xcconfig │ │ └── Pods-iPerspective │ │ ├── Pods-iPerspective-acknowledgements.markdown │ │ ├── Pods-iPerspective-acknowledgements.plist │ │ ├── Pods-iPerspective-dummy.m │ │ ├── Pods-iPerspective-environment.h │ │ ├── Pods-iPerspective-resources.sh │ │ ├── Pods-iPerspective.debug.xcconfig │ │ └── Pods-iPerspective.release.xcconfig ├── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── iPerspective.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── iPerspective-Example.xcscheme ├── iPerspective.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── iPerspective.xccheckout └── iPerspective │ ├── Base.lproj │ └── Main_iPhone.storyboard │ ├── EPAppDelegate.h │ ├── EPAppDelegate.m │ ├── EPViewController.h │ ├── EPViewController.m │ ├── EPViewController2.h │ ├── EPViewController2.m │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Image.imageset │ │ ├── Capture d’écran 2014-12-25 à 21.49.51.png │ │ ├── Capture d’écran 2014-12-25 à 21.49.51.png │ │ └── Contents.json │ ├── Image2.imageset │ │ ├── Contents.json │ │ └── Image2.png │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── en.lproj │ └── InfoPlist.strings │ ├── iPerspective-Info.plist │ ├── iPerspective-Prefix.pch │ └── main.m ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── UIImageView+Perspective.h │ ├── UIImageView+Perspective.m │ ├── UIImageViewPerspective.h │ └── UIImageViewPerspective.m ├── README.md ├── iPerspective.podspec └── images └── iPerspective.gif /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Build/iPerspective/UIImageView+Perspective.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIImageView+Perspective.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Build/iPerspective/UIImageViewPerspective.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIImageViewPerspective.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/iPerspective/UIImageView+Perspective.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIImageView+Perspective.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/iPerspective/UIImageViewPerspective.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIImageViewPerspective.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/iPerspective.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Local Podspecs/iPerspective.podspec -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-iPerspective/Pods-Tests-iPerspective-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-Tests-iPerspective/Pods-Tests-iPerspective-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-iPerspective/Pods-Tests-iPerspective-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-Tests-iPerspective/Pods-Tests-iPerspective-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-iPerspective/Pods-Tests-iPerspective-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-Tests-iPerspective/Pods-Tests-iPerspective-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-iPerspective/Pods-Tests-iPerspective.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/iPerspective.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/iPerspective.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/iPerspective.xcodeproj/xcshareddata/xcschemes/iPerspective-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective.xcodeproj/xcshareddata/xcschemes/iPerspective-Example.xcscheme -------------------------------------------------------------------------------- /Example/iPerspective.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/iPerspective.xcworkspace/xcshareddata/iPerspective.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective.xcworkspace/xcshareddata/iPerspective.xccheckout -------------------------------------------------------------------------------- /Example/iPerspective/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/iPerspective/EPAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/EPAppDelegate.h -------------------------------------------------------------------------------- /Example/iPerspective/EPAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/EPAppDelegate.m -------------------------------------------------------------------------------- /Example/iPerspective/EPViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/EPViewController.h -------------------------------------------------------------------------------- /Example/iPerspective/EPViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/EPViewController.m -------------------------------------------------------------------------------- /Example/iPerspective/EPViewController2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/EPViewController2.h -------------------------------------------------------------------------------- /Example/iPerspective/EPViewController2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/EPViewController2.m -------------------------------------------------------------------------------- /Example/iPerspective/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/iPerspective/Images.xcassets/Image.imageset/Capture d’écran 2014-12-25 à 21.49.51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/Images.xcassets/Image.imageset/Capture d’écran 2014-12-25 à 21.49.51.png -------------------------------------------------------------------------------- /Example/iPerspective/Images.xcassets/Image.imageset/Capture d’écran 2014-12-25 à 21.49.51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/Images.xcassets/Image.imageset/Capture d’écran 2014-12-25 à 21.49.51.png -------------------------------------------------------------------------------- /Example/iPerspective/Images.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/Images.xcassets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /Example/iPerspective/Images.xcassets/Image2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/Images.xcassets/Image2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/iPerspective/Images.xcassets/Image2.imageset/Image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/Images.xcassets/Image2.imageset/Image2.png -------------------------------------------------------------------------------- /Example/iPerspective/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/iPerspective/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/iPerspective/iPerspective-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/iPerspective-Info.plist -------------------------------------------------------------------------------- /Example/iPerspective/iPerspective-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/iPerspective-Prefix.pch -------------------------------------------------------------------------------- /Example/iPerspective/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/UIImageView+Perspective.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Pod/Classes/UIImageView+Perspective.h -------------------------------------------------------------------------------- /Pod/Classes/UIImageView+Perspective.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Pod/Classes/UIImageView+Perspective.m -------------------------------------------------------------------------------- /Pod/Classes/UIImageViewPerspective.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Pod/Classes/UIImageViewPerspective.h -------------------------------------------------------------------------------- /Pod/Classes/UIImageViewPerspective.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Pod/Classes/UIImageViewPerspective.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/README.md -------------------------------------------------------------------------------- /iPerspective.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/iPerspective.podspec -------------------------------------------------------------------------------- /images/iPerspective.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/images/iPerspective.gif --------------------------------------------------------------------------------