├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── UIImageView+Perspective.h │ ├── UIImageViewPerspective.h │ ├── UIImageView+Perspective.m │ └── UIImageViewPerspective.m ├── Example ├── Pods │ ├── Target Support Files │ │ ├── Pods-Tests-iPerspective │ │ │ ├── Pods-Tests-iPerspective.xcconfig │ │ │ ├── Pods-Tests-iPerspective-prefix.pch │ │ │ ├── Pods-Tests-iPerspective-dummy.m │ │ │ └── Pods-Tests-iPerspective-Private.xcconfig │ │ ├── Pods-iPerspective-iPerspective │ │ │ ├── Pods-iPerspective-iPerspective.xcconfig │ │ │ ├── Pods-iPerspective-iPerspective-prefix.pch │ │ │ ├── Pods-iPerspective-iPerspective-dummy.m │ │ │ └── Pods-iPerspective-iPerspective-Private.xcconfig │ │ ├── Pods-Tests │ │ │ ├── Pods-Tests-dummy.m │ │ │ ├── Pods-Tests.debug.xcconfig │ │ │ ├── Pods-Tests.release.xcconfig │ │ │ ├── Pods-Tests-environment.h │ │ │ ├── Pods-Tests-acknowledgements.markdown │ │ │ ├── Pods-Tests-acknowledgements.plist │ │ │ └── Pods-Tests-resources.sh │ │ └── Pods-iPerspective │ │ │ ├── Pods-iPerspective-dummy.m │ │ │ ├── Pods-iPerspective.debug.xcconfig │ │ │ ├── Pods-iPerspective.release.xcconfig │ │ │ ├── Pods-iPerspective-environment.h │ │ │ ├── Pods-iPerspective-acknowledgements.markdown │ │ │ ├── Pods-iPerspective-acknowledgements.plist │ │ │ └── Pods-iPerspective-resources.sh │ ├── Headers │ │ ├── Build │ │ │ └── iPerspective │ │ │ │ ├── UIImageView+Perspective.h │ │ │ │ └── UIImageViewPerspective.h │ │ └── Public │ │ │ └── iPerspective │ │ │ ├── UIImageView+Perspective.h │ │ │ └── UIImageViewPerspective.h │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── iPerspective.podspec │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Tests │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── Tests.m │ ├── Tests-Prefix.pch │ └── Tests-Info.plist ├── iPerspective │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── Images.xcassets │ │ ├── Image2.imageset │ │ │ ├── Image2.png │ │ │ └── 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 │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── EPViewController.h │ ├── EPViewController2.h │ ├── EPAppDelegate.h │ ├── main.m │ ├── iPerspective-Prefix.pch │ ├── iPerspective-Info.plist │ ├── EPViewController.m │ ├── EPViewController2.m │ ├── EPAppDelegate.m │ └── Base.lproj │ │ └── Main_iPhone.storyboard ├── iPerspective.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── iPerspective-Example.xcscheme │ └── project.pbxproj ├── Podfile ├── Podfile.lock └── iPerspective.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── iPerspective.xccheckout ├── images └── iPerspective.gif ├── LICENSE ├── iPerspective.podspec └── README.md /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-iPerspective/Pods-Tests-iPerspective.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/iPerspective/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/iPerspective.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/images/iPerspective.gif -------------------------------------------------------------------------------- /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/iPerspective/Images.xcassets/Image2.imageset/Image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicorneCloud/iPerspective/HEAD/Example/iPerspective/Images.xcassets/Image2.imageset/Image2.png -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-iPerspective/Pods-Tests-iPerspective-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-Tests-environment.h" 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-iPerspective-environment.h" 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_iPerspective : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_iPerspective 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // iPerspectiveTests.m 3 | // iPerspectiveTests 4 | // 5 | // Created by Eric Pinet on 12/24/2014. 6 | // Copyright (c) 2014 Eric Pinet. All rights reserved. 7 | // 8 | 9 | ${TEST_EXAMPLE} 10 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every test case source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /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/Pods/Target Support Files/Pods-Tests-iPerspective/Pods-Tests-iPerspective-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Tests_iPerspective : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Tests_iPerspective 5 | @end 6 | -------------------------------------------------------------------------------- /Example/iPerspective.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_iPerspective_iPerspective : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_iPerspective_iPerspective 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | 3 | target 'iPerspective', :exclusive => true do 4 | pod "iPerspective", :path => "../" 5 | end 6 | 7 | target 'Tests', :exclusive => true do 8 | pod "iPerspective", :path => "../" 9 | 10 | 11 | end 12 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - iPerspective (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - iPerspective (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | iPerspective: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | iPerspective: fcf1c6afb5fe210129a6ee0de215e378d7a235b5 13 | 14 | COCOAPODS: 0.35.0 15 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - iPerspective (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - iPerspective (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | iPerspective: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | iPerspective: fcf1c6afb5fe210129a6ee0de215e378d7a235b5 13 | 14 | COCOAPODS: 0.35.0 15 | -------------------------------------------------------------------------------- /Example/iPerspective/EPViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // EPViewController.h 3 | // iPerspective 4 | // 5 | // Created by Eric Pinet on 12/24/2014. 6 | // Copyright (c) 2014 Eric Pinet. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface EPViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/iPerspective/EPViewController2.h: -------------------------------------------------------------------------------- 1 | // 2 | // EPViewController2.h 3 | // iPerspective 4 | // 5 | // Created by Eric Pinet on 2014-12-29. 6 | // Copyright (c) 2014 Eric Pinet. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface EPViewController2 : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/iPerspective.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/iPerspective/EPAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // EPAppDelegate.h 3 | // iPerspective 4 | // 5 | // Created by CocoaPods on 12/24/2014. 6 | // Copyright (c) 2014 Eric Pinet. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface EPAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-iPerspective/Pods-Tests-iPerspective-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-Tests-iPerspective.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/iPerspective" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/iPerspective" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-iPerspective-iPerspective.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/iPerspective" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/iPerspective" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} -------------------------------------------------------------------------------- /Example/iPerspective/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // iPerspective 4 | // 5 | // Created by Eric Pinet on 12/24/2014. 6 | // Copyright (c) 2014 Eric Pinet. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "EPAppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([EPAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Example/iPerspective/Images.xcassets/Image2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "Image2.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/iPerspective/iPerspective-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/iPerspective" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/iPerspective" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-Tests-iPerspective" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/iPerspective" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/iPerspective" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-Tests-iPerspective" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/iPerspective" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/iPerspective" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-iPerspective-iPerspective" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/iPerspective" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/iPerspective" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-iPerspective-iPerspective" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/iPerspective/Images.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "Capture d’écran 2014-12-25 à 21.49.51.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h: -------------------------------------------------------------------------------- 1 | 2 | // To check if a library is compiled with CocoaPods you 3 | // can use the `COCOAPODS` macro definition which is 4 | // defined in the xcconfigs so it is available in 5 | // headers also when they are imported in the client 6 | // project. 7 | 8 | 9 | // iPerspective 10 | #define COCOAPODS_POD_AVAILABLE_iPerspective 11 | #define COCOAPODS_VERSION_MAJOR_iPerspective 0 12 | #define COCOAPODS_VERSION_MINOR_iPerspective 1 13 | #define COCOAPODS_VERSION_PATCH_iPerspective 0 14 | 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-environment.h: -------------------------------------------------------------------------------- 1 | 2 | // To check if a library is compiled with CocoaPods you 3 | // can use the `COCOAPODS` macro definition which is 4 | // defined in the xcconfigs so it is available in 5 | // headers also when they are imported in the client 6 | // project. 7 | 8 | 9 | // iPerspective 10 | #define COCOAPODS_POD_AVAILABLE_iPerspective 11 | #define COCOAPODS_VERSION_MAJOR_iPerspective 0 12 | #define COCOAPODS_VERSION_MINOR_iPerspective 1 13 | #define COCOAPODS_VERSION_PATCH_iPerspective 0 14 | 15 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014 Eric Pinet 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /iPerspective.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint iPerspective.podspec' to ensure this is a 3 | # valid spec and remove all comments before submitting the spec. 4 | # 5 | # Any lines starting with a # are optional, but encouraged 6 | # 7 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 8 | # 9 | 10 | Pod::Spec.new do |s| 11 | s.name = "iPerspective" 12 | s.version = "0.2.2" 13 | s.summary = "iPerspective is a iOS librarie of control with augmented reality." 14 | #s.description = "" 15 | s.homepage = "https://github.com/ericpinet/iPerspective" 16 | # s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2" 17 | s.license = 'MIT' 18 | s.author = { "Eric Pinet" => "pineri01@gmail.com" } 19 | s.source = { :git => "https://github.com/ericpinet/iPerspective.git", :tag => s.version.to_s } 20 | # s.social_media_url = 'https://twitter.com/' 21 | 22 | s.platform = :ios, '7.0' 23 | s.requires_arc = true 24 | 25 | s.source_files = 'Pod/Classes' 26 | s.resource_bundles = { 27 | 'iPerspective' => ['Pod/Assets/*.png'] 28 | } 29 | 30 | # s.public_header_files = 'Pod/Classes/**/*.h' 31 | # s.frameworks = 'UIKit', 'MapKit' 32 | # s.dependency 'AFNetworking', '~> 2.3' 33 | end 34 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/iPerspective.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint iPerspective.podspec' to ensure this is a 3 | # valid spec and remove all comments before submitting the spec. 4 | # 5 | # Any lines starting with a # are optional, but encouraged 6 | # 7 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 8 | # 9 | 10 | Pod::Spec.new do |s| 11 | s.name = "iPerspective" 12 | s.version = "0.1.0" 13 | s.summary = "iPerspective is a iOS librarie of control with augmented reality." 14 | #s.description = "" 15 | s.homepage = "https://github.com/ericpinet/iPerspective" 16 | # s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2" 17 | s.license = 'MIT' 18 | s.author = { "Eric Pinet" => "pineri01@gmail.com" } 19 | s.source = { :git => "https://github.com/ericpinet/iPerspective.git", :tag => s.version.to_s } 20 | # s.social_media_url = 'https://twitter.com/' 21 | 22 | s.platform = :ios, '7.0' 23 | s.requires_arc = true 24 | 25 | s.source_files = 'Pod/Classes' 26 | s.resource_bundles = { 27 | 'iPerspective' => ['Pod/Assets/*.png'] 28 | } 29 | 30 | # s.public_header_files = 'Pod/Classes/**/*.h' 31 | # s.frameworks = 'UIKit', 'MapKit' 32 | # s.dependency 'AFNetworking', '~> 2.3' 33 | end 34 | -------------------------------------------------------------------------------- /Example/iPerspective/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "orientation" : "portrait", 20 | "idiom" : "ipad", 21 | "extent" : "full-screen", 22 | "minimum-system-version" : "7.0", 23 | "scale" : "1x" 24 | }, 25 | { 26 | "orientation" : "landscape", 27 | "idiom" : "ipad", 28 | "extent" : "full-screen", 29 | "minimum-system-version" : "7.0", 30 | "scale" : "1x" 31 | }, 32 | { 33 | "orientation" : "portrait", 34 | "idiom" : "ipad", 35 | "extent" : "full-screen", 36 | "minimum-system-version" : "7.0", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "orientation" : "landscape", 41 | "idiom" : "ipad", 42 | "extent" : "full-screen", 43 | "minimum-system-version" : "7.0", 44 | "scale" : "2x" 45 | } 46 | ], 47 | "info" : { 48 | "version" : 1, 49 | "author" : "xcode" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## iPerspective 5 | 6 | Copyright (c) 2014 Eric Pinet 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## iPerspective 5 | 6 | Copyright (c) 2014 Eric Pinet 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Pod/Classes/UIImageView+Perspective.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImageView+Perspective.h 3 | // MusicPutt 4 | // 5 | // Created by Eric Pinet on 2014-12-23. 6 | // Copyright (c) 2014 Eric Pinet. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class CMMotionManager; 12 | 13 | @interface UIImageView (Perspective) 14 | 15 | /** 16 | * Start update display perspective with interval value of time (float). 17 | * 18 | * @param intervalValue time in miliseconde 19 | * @param motionManager motion manager (AppDelegate) 20 | */ 21 | - (void)startUpdate:(NSTimeInterval)intervalValue manager:(CMMotionManager*)motionManager; 22 | 23 | /** 24 | * Stop update display for perspective. 25 | * 26 | * @param motionManager motion manager (AppDelegate) 27 | */ 28 | - (void)stopUpdate:(CMMotionManager*)motionManager; 29 | 30 | 31 | /** 32 | * (DEPRECATED) Start update display perspective with interval value of time (float). 33 | * 34 | * @deprecated 35 | * @param intervalValue time in miliseconde 36 | * @param motionManager motion manager (AppDelegate) 37 | */ 38 | - (void)startUpdatesWithValue:(NSTimeInterval)intervalValue manager:(CMMotionManager*)motionManager; 39 | 40 | 41 | /** 42 | * (DEPRECATED) Stop update display for perspective. 43 | * 44 | * @deprecated 45 | * @param motionManager motion manager (AppDelegate) 46 | */ 47 | - (void)stopUpdateManager:(CMMotionManager*)motionManager; 48 | 49 | @end 50 | -------------------------------------------------------------------------------- /Example/iPerspective/iPerspective-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UIMainStoryboardFile 28 | Main_iPhone 29 | UIMainStoryboardFile~ipad 30 | Main_iPad 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | 39 | UISupportedInterfaceOrientations~ipad 40 | 41 | UIInterfaceOrientationPortrait 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /Example/iPerspective/EPViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // EPViewController.m 3 | // iPerspective 4 | // 5 | // Created by Eric Pinet on 12/24/2014. 6 | // Copyright (c) 2014 Eric Pinet. All rights reserved. 7 | // 8 | 9 | #import "EPViewController.h" 10 | #import "EPAppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | 16 | @interface EPViewController () 17 | { 18 | CMMotionManager *motionmanager; 19 | } 20 | 21 | @property (weak, nonatomic) IBOutlet UIImageView* imagePerspective; 22 | 23 | @end 24 | 25 | @implementation EPViewController 26 | 27 | - (void)viewDidLoad 28 | { 29 | [super viewDidLoad]; 30 | // Do any additional setup after loading the view, typically from a nib. 31 | } 32 | 33 | - (void)didReceiveMemoryWarning 34 | { 35 | [super didReceiveMemoryWarning]; 36 | // Dispose of any resources that can be recreated. 37 | } 38 | 39 | - (void) viewDidAppear:(BOOL)animated 40 | { 41 | // setup UIImageView+Perspective 42 | [_imagePerspective startUpdate:0.01 manager:[self sharedManager]]; 43 | } 44 | 45 | - (void) viewWillDisappear:(BOOL)animated 46 | { 47 | // setup UIImageView+Perspective 48 | [_imagePerspective stopUpdate:[self sharedManager]]; 49 | } 50 | 51 | - (CMMotionManager *)sharedManager 52 | { 53 | static dispatch_once_t onceToken; 54 | dispatch_once(&onceToken, ^{ 55 | motionmanager = [[CMMotionManager alloc] init]; 56 | }); 57 | return motionmanager; 58 | } 59 | 60 | @end 61 | -------------------------------------------------------------------------------- /Example/iPerspective/EPViewController2.m: -------------------------------------------------------------------------------- 1 | // 2 | // EPViewController2.m 3 | // iPerspective 4 | // 5 | // Created by Eric Pinet on 2014-12-29. 6 | // Copyright (c) 2014 Eric Pinet. All rights reserved. 7 | // 8 | 9 | #import "EPViewController2.h" 10 | #import "EPAppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | 16 | @interface EPViewController2 () 17 | { 18 | CMMotionManager *motionmanager; 19 | } 20 | 21 | @property (weak, nonatomic) IBOutlet UIImageViewPerspective* imagePerspective; 22 | 23 | @end 24 | 25 | @implementation EPViewController2 26 | 27 | - (void)viewDidLoad 28 | { 29 | [super viewDidLoad]; 30 | // Do any additional setup after loading the view, typically from a nib. 31 | 32 | // initialize _imagePerspective 33 | [_imagePerspective setMotionManger:[self sharedManager]]; 34 | [_imagePerspective setMaximumAmplitude:20.0]; 35 | [_imagePerspective setMaximumAngle:2.0]; 36 | [_imagePerspective setUpdateInterval:0.01]; 37 | 38 | } 39 | 40 | - (void)didReceiveMemoryWarning 41 | { 42 | [super didReceiveMemoryWarning]; 43 | // Dispose of any resources that can be recreated. 44 | } 45 | 46 | - (void) viewDidAppear:(BOOL)animated 47 | { 48 | // start update 49 | [_imagePerspective startUpdate]; 50 | } 51 | 52 | - (void) viewWillDisappear:(BOOL)animated 53 | { 54 | // stop update 55 | [_imagePerspective stopUpdate]; 56 | } 57 | 58 | - (CMMotionManager *)sharedManager 59 | { 60 | static dispatch_once_t onceToken; 61 | dispatch_once(&onceToken, ^{ 62 | motionmanager = [[CMMotionManager alloc] init]; 63 | }); 64 | return motionmanager; 65 | } 66 | 67 | @end 68 | -------------------------------------------------------------------------------- /Example/iPerspective.xcworkspace/xcshareddata/iPerspective.xccheckout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDESourceControlProjectFavoriteDictionaryKey 6 | 7 | IDESourceControlProjectIdentifier 8 | 2BF9568B-F9F8-4FA2-8A4A-F37204A0FD2E 9 | IDESourceControlProjectName 10 | iPerspective 11 | IDESourceControlProjectOriginsDictionary 12 | 13 | F8FB7AAAF39795CE3CD54FE24E2B13F0B7633514 14 | https://github.com/ericpinet/iPerspective.git 15 | 16 | IDESourceControlProjectPath 17 | Example/iPerspective.xcworkspace 18 | IDESourceControlProjectRelativeInstallPathDictionary 19 | 20 | F8FB7AAAF39795CE3CD54FE24E2B13F0B7633514 21 | ../.. 22 | 23 | IDESourceControlProjectURL 24 | https://github.com/ericpinet/iPerspective.git 25 | IDESourceControlProjectVersion 26 | 111 27 | IDESourceControlProjectWCCIdentifier 28 | F8FB7AAAF39795CE3CD54FE24E2B13F0B7633514 29 | IDESourceControlProjectWCConfigurations 30 | 31 | 32 | IDESourceControlRepositoryExtensionIdentifierKey 33 | public.vcs.git 34 | IDESourceControlWCCIdentifierKey 35 | F8FB7AAAF39795CE3CD54FE24E2B13F0B7633514 36 | IDESourceControlWCCName 37 | iPerspective 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Pod/Classes/UIImageViewPerspective.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImageViewPerspective.h 3 | // Pods 4 | // 5 | // Created by Eric Pinet on 2014-12-29. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @class CMMotionManager; 12 | 13 | 14 | /** 15 | * UIImageViewPerspective is a subclass of UIImageView for help you to hade perspective effect 16 | * using core motion on the device. 17 | */ 18 | @interface UIImageViewPerspective : UIImageView 19 | 20 | - (id) init; 21 | 22 | - (id) initWithCoder:(NSCoder *)aDecoder; 23 | 24 | - (id) initWithFrame:(CGRect)frame; 25 | 26 | - (id) initWithImage:(UIImage *)image; 27 | 28 | - (id) initWithImage:(UIImage *)image highlightedImage:(UIImage *)highlightedImage; 29 | 30 | /** 31 | * Set core motion manager for manage update postion of this view. 32 | * The 33 | * 34 | * @param motionManager MotionManager from CoreMotion. 35 | */ 36 | - (void) setMotionManger:(CMMotionManager*)motionManager; 37 | 38 | /** 39 | * Set maximum amplitude of motion for this view. 40 | * Default value is: 20. 41 | * 42 | * @param amplitude It's recommended to set amplitude between : 10 and 40. 43 | */ 44 | - (void) setMaximumAmplitude:(float)amplitude; 45 | 46 | /** 47 | * Set maximum angle of motion for this device. (0 to 3.0) 48 | * Default value is 2.0. 49 | * 50 | * @param angle It's recommended to set angle between 1.0 and 2.0. 51 | */ 52 | - (void) setMaximumAngle:(float)angle; 53 | 54 | /** 55 | * Set interval of time between the graphics interface. 56 | * Default value is 0.01 57 | * 58 | * @param interval It's recommended to set interval at 0.01 for maximum render or 0.1 for low cpu usage. 59 | */ 60 | - (void) setUpdateInterval:(NSTimeInterval)interval; 61 | 62 | /** 63 | * Start update display perspective. 64 | */ 65 | - (void)startUpdate; 66 | 67 | /** 68 | * Stop update display for perspective. 69 | */ 70 | - (void)stopUpdate; 71 | 72 | @end 73 | -------------------------------------------------------------------------------- /Example/iPerspective/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "20x20", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "20x20", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "29x29", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "29x29", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "40x40", 66 | "scale" : "1x" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "size" : "40x40", 71 | "scale" : "2x" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "size" : "76x76", 76 | "scale" : "1x" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "size" : "76x76", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "idiom" : "ipad", 85 | "size" : "83.5x83.5", 86 | "scale" : "2x" 87 | } 88 | ], 89 | "info" : { 90 | "version" : 1, 91 | "author" : "xcode" 92 | } 93 | } -------------------------------------------------------------------------------- /Example/iPerspective/EPAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // EPAppDelegate.m 3 | // iPerspective 4 | // 5 | // Created by CocoaPods on 12/24/2014. 6 | // Copyright (c) 2014 Eric Pinet. All rights reserved. 7 | // 8 | 9 | #import "EPAppDelegate.h" 10 | 11 | 12 | @implementation EPAppDelegate 13 | 14 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 15 | { 16 | // Override point for customization after application launch. 17 | return YES; 18 | } 19 | 20 | - (void)applicationWillResignActive:(UIApplication *)application 21 | { 22 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 23 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 24 | } 25 | 26 | - (void)applicationDidEnterBackground:(UIApplication *)application 27 | { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | - (void)applicationWillEnterForeground:(UIApplication *)application 33 | { 34 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 35 | } 36 | 37 | - (void)applicationDidBecomeActive:(UIApplication *)application 38 | { 39 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 40 | } 41 | 42 | - (void)applicationWillTerminate:(UIApplication *)application 43 | { 44 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 45 | } 46 | 47 | @end 48 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2014 Eric Pinet <pineri01@gmail.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | iPerspective 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2014 Eric Pinet <pineri01@gmail.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | iPerspective 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Pod/Classes/UIImageView+Perspective.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIImageView+Perspective.m 3 | // MusicPutt 4 | // 5 | // Created by Eric Pinet on 2014-12-23. 6 | // Copyright (c) 2014 Eric Pinet. All rights reserved. 7 | // 8 | 9 | #import "UIImageView+Perspective.h" 10 | 11 | #import 12 | 13 | #define AMPLITUDE 20 14 | #define LIMIT_ANGLE 2 15 | 16 | @implementation UIImageView (Perspective) 17 | 18 | /** 19 | * Start update display perspective with interval value of time (float). 20 | * 21 | * @param intervalValue time in miliseconde 22 | * @param motionManager motion manager (AppDelegate) 23 | */ 24 | - (void)startUpdate:(NSTimeInterval)intervalValue manager:(CMMotionManager*)motionManager; 25 | { 26 | CMMotionManager *mManager = motionManager; 27 | CGRect initialFrame = self.frame; 28 | 29 | if ([mManager isDeviceMotionAvailable] == YES) { 30 | [mManager setDeviceMotionUpdateInterval:intervalValue]; 31 | [mManager startDeviceMotionUpdatesToQueue:[NSOperationQueue mainQueue] withHandler:^(CMDeviceMotion *deviceMotion, NSError *error) { 32 | 33 | if (deviceMotion.attitude.roll > -LIMIT_ANGLE && 34 | deviceMotion.attitude.roll < LIMIT_ANGLE && 35 | deviceMotion.attitude.pitch > -LIMIT_ANGLE && 36 | deviceMotion.attitude.pitch < LIMIT_ANGLE) { 37 | 38 | CGRect frame = initialFrame; 39 | frame.origin.x = initialFrame.origin.x + (AMPLITUDE*deviceMotion.attitude.roll); 40 | frame.origin.y = initialFrame.origin.y + (AMPLITUDE*deviceMotion.attitude.pitch); 41 | 42 | self.frame = frame; 43 | 44 | self.translatesAutoresizingMaskIntoConstraints = YES; 45 | } 46 | }]; 47 | } 48 | } 49 | 50 | /** 51 | * Stop update display for perspective. 52 | * 53 | * @param motionManager motion manager (AppDelegate) 54 | */ 55 | - (void)stopUpdate:(CMMotionManager*)motionManager 56 | { 57 | if ([motionManager isDeviceMotionActive] == YES) { 58 | [motionManager stopDeviceMotionUpdates]; 59 | } 60 | } 61 | 62 | /** 63 | * (DEPRECATED) Start update display perspective with interval value of time (float). 64 | * 65 | * @deprecated 66 | * @param intervalValue time in miliseconde 67 | * @param motionManager motion manager (AppDelegate) 68 | */ 69 | - (void)startUpdatesWithValue:(NSTimeInterval)intervalValue manager:(CMMotionManager*)motionManager; 70 | { 71 | [self startUpdate:intervalValue manager:motionManager]; 72 | } 73 | 74 | /** 75 | * (DEPRECATED) Stop update display for perspective. 76 | * 77 | * @deprecated 78 | * @param motionManager motion manager (AppDelegate) 79 | */ 80 | - (void)stopUpdateManager:(CMMotionManager*)motionManager 81 | { 82 | if ([motionManager isDeviceMotionActive] == YES) { 83 | [motionManager stopDeviceMotionUpdates]; 84 | } 85 | } 86 | 87 | 88 | 89 | @end 90 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | iPerspective 2 | ============ 3 | 4 | iPerspective is a iOS librarie of control with augmented reality. 5 | 6 | - **UIImageViewPerspective**: UIImageView with perspective when user move device. 7 | - **UIImageView+Perspective**: Category for UIImageView and permit to create UIImageView with perspective when user move device. 8 | - **UIViewPerspective**: UIView with perspective when user move device. _(Under construction)_ 9 | - **UIView+Perspective**: Category for UIView and permit to create UIView with perspective when user move device. _(Under construction)_ 10 | 11 | Documentation: [iPerspectiveDocs](http://cocoadocs.org/docsets/iPerspective) 12 | 13 | # iPerspective 14 | 15 | [![CI Status](http://img.shields.io/travis/Eric%20Pinet/iPerspective.svg?style=flat)](https://travis-ci.org/Eric%20Pinet/iPerspective) 16 | [![Version](https://img.shields.io/cocoapods/v/iPerspective.svg?style=flat)](http://cocoadocs.org/docsets/iPerspective) 17 | [![License](https://img.shields.io/cocoapods/l/iPerspective.svg?style=flat)](http://cocoadocs.org/docsets/iPerspective) 18 | [![Platform](https://img.shields.io/cocoapods/p/iPerspective.svg?style=flat)](http://cocoadocs.org/docsets/iPerspective) 19 | 20 | 21 | ![iPerspective](https://github.com/ericpinet/iPerspective/blob/develop/images/iPerspective.gif) 22 | 23 | ## Requirements 24 | 25 | N/A 26 | 27 | ## Installation 28 | 29 | iPerspective is available through [CocoaPods](http://cocoapods.org). To install 30 | it, simply add the following line to your Podfile: 31 | 32 | pod 'iPerspective' 33 | 34 | And execute this command in your project folder: 35 | 36 | pod install 37 | 38 | ## Usage of 'UIImageViewPerspective'. 39 | 40 | See the sample project iPerspective in 'Exemple' directory. 41 | 42 | ### Prepare 'CMMotionManager' 43 | 44 | All control in iPerspective use 'CoreMotion'. It's prefered to create a single instance of CMMotionManager for all control in your app. 45 | 46 | #import 47 | ... 48 | @interface EPViewController2 () 49 | { 50 | CMMotionManager *motionmanager; 51 | } 52 | ... 53 | - (CMMotionManager *)sharedManager 54 | { 55 | static dispatch_once_t onceToken; 56 | dispatch_once(&onceToken, ^{ 57 | motionmanager = [[CMMotionManager alloc] init]; 58 | }); 59 | return motionmanager; 60 | } 61 | 62 | ### Use UIImageViewPerspective in your application. 63 | 64 | UIImageViewPerspective is a subclass of UIImageView. You can use that to replace your UIImageView. 65 | 66 | Import : 67 | 68 | #import 69 | 70 | Setup UIImageViewPerspective: 71 | 72 | // initialize _imagePerspective 73 | [_imagePerspective setMotionManger:[self sharedManager]]; // (Mandatory) set motion manager 74 | 75 | [_imagePerspective setMaximumAmplitude:20.0]; // (Optional) maximum move of UIImageView 76 | [_imagePerspective setMaximumAngle:2.0]; // (OPtional) maximum angle managed 77 | [_imagePerspective setUpdateInterval:0.01]; // (Optional) interval of refresh 78 | 79 | Start image motion with core motion: 80 | 81 | // start image motion with core motion 82 | [_imagePerspective startUpdate]; 83 | 84 | 85 | Stop image motion: 86 | 87 | // stop image motion 88 | [_imagePerspective stopUpdate]; 89 | 90 | ## Usage of 'UIImageView+Perspective'. 91 | 92 | See the sample project iPerspective in 'Exemple' directory. 93 | 94 | ### Use UIImageView+Perspective in your application. 95 | 96 | UIImageView+Perspective is a category. You can use that to replace your UIImageView. 97 | 98 | Import : 99 | 100 | #import 101 | 102 | Start image motion with core motion: 103 | 104 | // start image motion with core motion 105 | [_imagePerspective startUpdate:0.01 manager:[self sharedManager]]; 106 | 107 | 108 | Stop image motion: 109 | 110 | // stop image motion 111 | [_imagePerspective stopUpdate:[self sharedManager]]; 112 | 113 | 114 | ## Author 115 | 116 | Eric Pinet, pineri01@gmail.com 117 | 118 | ## License 119 | 120 | iPerspective is available under the MIT license. See the LICENSE file for more info. 121 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | install_resource() 10 | { 11 | case $1 in 12 | *.storyboard) 13 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 14 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 15 | ;; 16 | *.xib) 17 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 18 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 19 | ;; 20 | *.framework) 21 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 22 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 23 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 25 | ;; 26 | *.xcdatamodel) 27 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 28 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 29 | ;; 30 | *.xcdatamodeld) 31 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 32 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 33 | ;; 34 | *.xcmappingmodel) 35 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 36 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 37 | ;; 38 | *.xcassets) 39 | ;; 40 | /*) 41 | echo "$1" 42 | echo "$1" >> "$RESOURCES_TO_COPY" 43 | ;; 44 | *) 45 | echo "${PODS_ROOT}/$1" 46 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 47 | ;; 48 | esac 49 | } 50 | install_resource "${BUILT_PRODUCTS_DIR}/iPerspective.bundle" 51 | 52 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 53 | if [[ "${ACTION}" == "install" ]]; then 54 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 55 | fi 56 | rm -f "$RESOURCES_TO_COPY" 57 | 58 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ] 59 | then 60 | case "${TARGETED_DEVICE_FAMILY}" in 61 | 1,2) 62 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 63 | ;; 64 | 1) 65 | TARGET_DEVICE_ARGS="--target-device iphone" 66 | ;; 67 | 2) 68 | TARGET_DEVICE_ARGS="--target-device ipad" 69 | ;; 70 | *) 71 | TARGET_DEVICE_ARGS="--target-device mac" 72 | ;; 73 | esac 74 | find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 75 | fi 76 | -------------------------------------------------------------------------------- /Example/iPerspective.xcodeproj/xcshareddata/xcschemes/iPerspective-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 53 | 54 | 64 | 66 | 72 | 73 | 74 | 75 | 76 | 77 | 83 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | install_resource() 10 | { 11 | case $1 in 12 | *.storyboard) 13 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 14 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 15 | ;; 16 | *.xib) 17 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 18 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 19 | ;; 20 | *.framework) 21 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 22 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 23 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 25 | ;; 26 | *.xcdatamodel) 27 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 28 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 29 | ;; 30 | *.xcdatamodeld) 31 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 32 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 33 | ;; 34 | *.xcmappingmodel) 35 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 36 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 37 | ;; 38 | *.xcassets) 39 | ;; 40 | /*) 41 | echo "$1" 42 | echo "$1" >> "$RESOURCES_TO_COPY" 43 | ;; 44 | *) 45 | echo "${PODS_ROOT}/$1" 46 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 47 | ;; 48 | esac 49 | } 50 | install_resource "${BUILT_PRODUCTS_DIR}/iPerspective.bundle" 51 | 52 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 53 | if [[ "${ACTION}" == "install" ]]; then 54 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 55 | fi 56 | rm -f "$RESOURCES_TO_COPY" 57 | 58 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ] 59 | then 60 | case "${TARGETED_DEVICE_FAMILY}" in 61 | 1,2) 62 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 63 | ;; 64 | 1) 65 | TARGET_DEVICE_ARGS="--target-device iphone" 66 | ;; 67 | 2) 68 | TARGET_DEVICE_ARGS="--target-device ipad" 69 | ;; 70 | *) 71 | TARGET_DEVICE_ARGS="--target-device mac" 72 | ;; 73 | esac 74 | find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 75 | fi 76 | -------------------------------------------------------------------------------- /Pod/Classes/UIImageViewPerspective.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIImageViewPerspective.m 3 | // Pods 4 | // 5 | // Created by Eric Pinet on 2014-12-29. 6 | // 7 | // 8 | 9 | #import "UIImageViewPerspective.h" 10 | 11 | #import 12 | 13 | #define PERSPECTIVE_AMPLITUDE 20 14 | #define PERSPECTIVE_ANGLE_LIMIT 2 15 | #define PERSPECTIVE_INTERVAL 0.01 16 | 17 | @interface UIImageViewPerspective() 18 | { 19 | float _amplitude; 20 | float _angleLimit; 21 | NSTimeInterval _interval; 22 | CMMotionManager* _motionManager; 23 | CGRect _initialFrame; 24 | } 25 | @end 26 | 27 | @implementation UIImageViewPerspective 28 | 29 | 30 | - (id) init 31 | { 32 | [self initDefaultValue]; 33 | return [super init]; 34 | } 35 | 36 | - (id) initWithCoder:(NSCoder *)aDecoder 37 | { 38 | [self initDefaultValue]; 39 | return [super initWithCoder:aDecoder]; 40 | } 41 | 42 | - (id) initWithFrame:(CGRect)frame 43 | { 44 | [self initDefaultValue]; 45 | return [super initWithFrame:frame]; 46 | } 47 | 48 | - (id) initWithImage:(UIImage *)image 49 | { 50 | [self initDefaultValue]; 51 | return [super initWithImage:image]; 52 | } 53 | 54 | - (id) initWithImage:(UIImage *)image highlightedImage:(UIImage *)highlightedImage 55 | { 56 | [self initDefaultValue]; 57 | return [super initWithImage:image highlightedImage:highlightedImage]; 58 | } 59 | 60 | 61 | /** 62 | * Initialize default value. 63 | */ 64 | - (void) initDefaultValue 65 | { 66 | _amplitude = PERSPECTIVE_AMPLITUDE; 67 | _angleLimit = PERSPECTIVE_ANGLE_LIMIT; 68 | _interval = PERSPECTIVE_INTERVAL; 69 | _motionManager = nil; 70 | } 71 | 72 | /** 73 | * Set core motion manager for manage update postion of this view. 74 | * The 75 | * 76 | * @param motionManager MotionManager from CoreMotion. 77 | */ 78 | - (void) setMotionManger:(CMMotionManager*)motionManager 79 | { 80 | if (motionManager) { 81 | _motionManager = motionManager; 82 | } 83 | } 84 | 85 | /** 86 | * Set maximum amplitude of motion for this view. 87 | * Default value is: 20. 88 | * 89 | * @param amplitude It's recommended to set amplitude between : 10 and 40. 90 | */ 91 | - (void) setMaximumAmplitude:(float)amplitude 92 | { 93 | if (amplitude>0 && amplitude<1000) { 94 | _amplitude = amplitude; 95 | } 96 | } 97 | 98 | /** 99 | * Set maximum angle of motion for this device. (0 to 3.0) 100 | * Default value is 2.0. 101 | * 102 | * @param angle It's recommended to set angle between 1.0 and 2.0. 103 | */ 104 | - (void) setMaximumAngle:(float)angle 105 | { 106 | if (angle>=0 && angle<=3) { 107 | _angleLimit = angle; 108 | } 109 | } 110 | 111 | /** 112 | * Set interval of time between the graphics interface. 113 | * Default value is 0.01 114 | * 115 | * @param interval It's recommended to set interval at 0.01 for maximum render or 0.1 for low cpu usage. 116 | */ 117 | - (void) setUpdateInterval:(NSTimeInterval)interval 118 | { 119 | if (interval>0.001) { 120 | _interval = interval; 121 | } 122 | } 123 | 124 | /** 125 | * Start update display perspective. 126 | */ 127 | - (void)startUpdate 128 | { 129 | if (_initialFrame.size.height == 0 && 130 | _initialFrame.size.width == 0) { 131 | _initialFrame = self.frame; 132 | } 133 | 134 | if (_motionManager) { 135 | if ([_motionManager isDeviceMotionAvailable] == YES) { 136 | [_motionManager setDeviceMotionUpdateInterval:_interval]; 137 | [_motionManager startDeviceMotionUpdatesToQueue:[NSOperationQueue mainQueue] withHandler:^(CMDeviceMotion *deviceMotion, NSError *error) { 138 | 139 | if (deviceMotion.attitude.roll > -_angleLimit && 140 | deviceMotion.attitude.roll < _angleLimit && 141 | deviceMotion.attitude.pitch > -_angleLimit && 142 | deviceMotion.attitude.pitch < _angleLimit) { 143 | 144 | CGRect frame = _initialFrame; 145 | frame.origin.x = _initialFrame.origin.x + (_amplitude*deviceMotion.attitude.roll); 146 | frame.origin.y = _initialFrame.origin.y + (_amplitude*deviceMotion.attitude.pitch); 147 | 148 | self.frame = frame; 149 | 150 | self.translatesAutoresizingMaskIntoConstraints = YES; 151 | } 152 | }]; 153 | } 154 | } 155 | else{ 156 | NSLog(@" %s - %@\n", __PRETTY_FUNCTION__, @"MotionManager not set in UIImageViewPerspective. Set MotionManager before call startUpdate"); 157 | } 158 | } 159 | 160 | /** 161 | * Stop update display for perspective. 162 | */ 163 | - (void)stopUpdate 164 | { 165 | if (_motionManager) { 166 | 167 | if ([_motionManager isDeviceMotionActive] == YES) { 168 | [_motionManager stopDeviceMotionUpdates]; 169 | } 170 | } 171 | else{ 172 | NSLog(@" %s - %@\n", __PRETTY_FUNCTION__, @"MotionManager not set in UIImageViewPerspective. Set MotionManager before call stopUpdate"); 173 | } 174 | } 175 | 176 | /* 177 | // Only override drawRect: if you perform custom drawing. 178 | // An empty implementation adversely affects performance during animation. 179 | - (void)drawRect:(CGRect)rect { 180 | // Drawing code 181 | } 182 | */ 183 | 184 | @end 185 | -------------------------------------------------------------------------------- /Example/iPerspective/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /Example/iPerspective.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 11 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 12 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 13 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 14 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 15 | 6003F59E195388D20070C39A /* EPAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* EPAppDelegate.m */; }; 16 | 6003F5A1195388D20070C39A /* Main_iPhone.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6003F59F195388D20070C39A /* Main_iPhone.storyboard */; }; 17 | 6003F5A7195388D20070C39A /* EPViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* EPViewController.m */; }; 18 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 19 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; 20 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 21 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 22 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; 23 | 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; 24 | 893E812F2BD94FB07BA358EB /* libPods-Tests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 02A07B362A277704A7AB2174 /* libPods-Tests.a */; }; 25 | 97B550131A5230DB00D6580C /* EPViewController2.m in Sources */ = {isa = PBXBuildFile; fileRef = 97B550121A5230DB00D6580C /* EPViewController2.m */; }; 26 | A872F66A3B42A2A2AFAB8032 /* libPods-iPerspective.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F95C25A5018AA454B09290 /* libPods-iPerspective.a */; }; 27 | /* End PBXBuildFile section */ 28 | 29 | /* Begin PBXContainerItemProxy section */ 30 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { 31 | isa = PBXContainerItemProxy; 32 | containerPortal = 6003F582195388D10070C39A /* Project object */; 33 | proxyType = 1; 34 | remoteGlobalIDString = 6003F589195388D20070C39A; 35 | remoteInfo = iPerspective; 36 | }; 37 | /* End PBXContainerItemProxy section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 02A07B362A277704A7AB2174 /* libPods-Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 15202B44C5E114A0DF20CD62 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 42 | 37BD547F0A44B75E133AD4A9 /* Pods-iPerspective.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-iPerspective.release.xcconfig"; path = "Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective.release.xcconfig"; sourceTree = ""; }; 43 | 5C339340EF2AABEE28924386 /* Pods-Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig"; sourceTree = ""; }; 44 | 6003F58A195388D20070C39A /* iPerspective.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = iPerspective.app; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 46 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 47 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 48 | 6003F595195388D20070C39A /* iPerspective-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "iPerspective-Info.plist"; sourceTree = ""; }; 49 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 50 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 51 | 6003F59B195388D20070C39A /* iPerspective-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "iPerspective-Prefix.pch"; sourceTree = ""; }; 52 | 6003F59C195388D20070C39A /* EPAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EPAppDelegate.h; sourceTree = ""; }; 53 | 6003F59D195388D20070C39A /* EPAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EPAppDelegate.m; sourceTree = ""; }; 54 | 6003F5A0195388D20070C39A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main_iPhone.storyboard; sourceTree = ""; }; 55 | 6003F5A5195388D20070C39A /* EPViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EPViewController.h; sourceTree = ""; }; 56 | 6003F5A6195388D20070C39A /* EPViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EPViewController.m; sourceTree = ""; }; 57 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 58 | 6003F5AE195388D20070C39A /* Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 59 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 60 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 61 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 62 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 63 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 64 | 746CB00AB6CCFC8A46B9D033 /* Pods-Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig"; sourceTree = ""; }; 65 | 757322A61863CB1F6EEA4C5C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 66 | 97B550111A5230DB00D6580C /* EPViewController2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EPViewController2.h; sourceTree = ""; }; 67 | 97B550121A5230DB00D6580C /* EPViewController2.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EPViewController2.m; sourceTree = ""; }; 68 | 9DB7ED1B3A2629190696D368 /* Pods-iPerspective.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-iPerspective.debug.xcconfig"; path = "Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective.debug.xcconfig"; sourceTree = ""; }; 69 | A268EB7DD43ACDA4B200262E /* iPerspective.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = iPerspective.podspec; path = ../iPerspective.podspec; sourceTree = ""; }; 70 | A6F95C25A5018AA454B09290 /* libPods-iPerspective.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-iPerspective.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 71 | /* End PBXFileReference section */ 72 | 73 | /* Begin PBXFrameworksBuildPhase section */ 74 | 6003F587195388D20070C39A /* Frameworks */ = { 75 | isa = PBXFrameworksBuildPhase; 76 | buildActionMask = 2147483647; 77 | files = ( 78 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 79 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 80 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 81 | A872F66A3B42A2A2AFAB8032 /* libPods-iPerspective.a in Frameworks */, 82 | ); 83 | runOnlyForDeploymentPostprocessing = 0; 84 | }; 85 | 6003F5AB195388D20070C39A /* Frameworks */ = { 86 | isa = PBXFrameworksBuildPhase; 87 | buildActionMask = 2147483647; 88 | files = ( 89 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 90 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 91 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 92 | 893E812F2BD94FB07BA358EB /* libPods-Tests.a in Frameworks */, 93 | ); 94 | runOnlyForDeploymentPostprocessing = 0; 95 | }; 96 | /* End PBXFrameworksBuildPhase section */ 97 | 98 | /* Begin PBXGroup section */ 99 | 6003F581195388D10070C39A = { 100 | isa = PBXGroup; 101 | children = ( 102 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 103 | 6003F593195388D20070C39A /* iPerspective */, 104 | 6003F5B5195388D20070C39A /* Tests */, 105 | 6003F58C195388D20070C39A /* Frameworks */, 106 | 6003F58B195388D20070C39A /* Products */, 107 | 9030BAFD600DC068BB6027E1 /* Pods */, 108 | ); 109 | sourceTree = ""; 110 | }; 111 | 6003F58B195388D20070C39A /* Products */ = { 112 | isa = PBXGroup; 113 | children = ( 114 | 6003F58A195388D20070C39A /* iPerspective.app */, 115 | 6003F5AE195388D20070C39A /* Tests.xctest */, 116 | ); 117 | name = Products; 118 | sourceTree = ""; 119 | }; 120 | 6003F58C195388D20070C39A /* Frameworks */ = { 121 | isa = PBXGroup; 122 | children = ( 123 | 6003F58D195388D20070C39A /* Foundation.framework */, 124 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 125 | 6003F591195388D20070C39A /* UIKit.framework */, 126 | 6003F5AF195388D20070C39A /* XCTest.framework */, 127 | 02A07B362A277704A7AB2174 /* libPods-Tests.a */, 128 | A6F95C25A5018AA454B09290 /* libPods-iPerspective.a */, 129 | ); 130 | name = Frameworks; 131 | sourceTree = ""; 132 | }; 133 | 6003F593195388D20070C39A /* iPerspective */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | 6003F59C195388D20070C39A /* EPAppDelegate.h */, 137 | 6003F59D195388D20070C39A /* EPAppDelegate.m */, 138 | 6003F59F195388D20070C39A /* Main_iPhone.storyboard */, 139 | 6003F5A5195388D20070C39A /* EPViewController.h */, 140 | 6003F5A6195388D20070C39A /* EPViewController.m */, 141 | 97B550111A5230DB00D6580C /* EPViewController2.h */, 142 | 97B550121A5230DB00D6580C /* EPViewController2.m */, 143 | 6003F5A8195388D20070C39A /* Images.xcassets */, 144 | 6003F594195388D20070C39A /* Supporting Files */, 145 | ); 146 | path = iPerspective; 147 | sourceTree = ""; 148 | }; 149 | 6003F594195388D20070C39A /* Supporting Files */ = { 150 | isa = PBXGroup; 151 | children = ( 152 | 6003F595195388D20070C39A /* iPerspective-Info.plist */, 153 | 6003F596195388D20070C39A /* InfoPlist.strings */, 154 | 6003F599195388D20070C39A /* main.m */, 155 | 6003F59B195388D20070C39A /* iPerspective-Prefix.pch */, 156 | ); 157 | name = "Supporting Files"; 158 | sourceTree = ""; 159 | }; 160 | 6003F5B5195388D20070C39A /* Tests */ = { 161 | isa = PBXGroup; 162 | children = ( 163 | 6003F5BB195388D20070C39A /* Tests.m */, 164 | 6003F5B6195388D20070C39A /* Supporting Files */, 165 | ); 166 | path = Tests; 167 | sourceTree = ""; 168 | }; 169 | 6003F5B6195388D20070C39A /* Supporting Files */ = { 170 | isa = PBXGroup; 171 | children = ( 172 | 6003F5B7195388D20070C39A /* Tests-Info.plist */, 173 | 6003F5B8195388D20070C39A /* InfoPlist.strings */, 174 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, 175 | ); 176 | name = "Supporting Files"; 177 | sourceTree = ""; 178 | }; 179 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 180 | isa = PBXGroup; 181 | children = ( 182 | A268EB7DD43ACDA4B200262E /* iPerspective.podspec */, 183 | 15202B44C5E114A0DF20CD62 /* README.md */, 184 | 757322A61863CB1F6EEA4C5C /* LICENSE */, 185 | ); 186 | name = "Podspec Metadata"; 187 | sourceTree = ""; 188 | }; 189 | 9030BAFD600DC068BB6027E1 /* Pods */ = { 190 | isa = PBXGroup; 191 | children = ( 192 | 5C339340EF2AABEE28924386 /* Pods-Tests.debug.xcconfig */, 193 | 746CB00AB6CCFC8A46B9D033 /* Pods-Tests.release.xcconfig */, 194 | 9DB7ED1B3A2629190696D368 /* Pods-iPerspective.debug.xcconfig */, 195 | 37BD547F0A44B75E133AD4A9 /* Pods-iPerspective.release.xcconfig */, 196 | ); 197 | name = Pods; 198 | sourceTree = ""; 199 | }; 200 | /* End PBXGroup section */ 201 | 202 | /* Begin PBXNativeTarget section */ 203 | 6003F589195388D20070C39A /* iPerspective */ = { 204 | isa = PBXNativeTarget; 205 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "iPerspective" */; 206 | buildPhases = ( 207 | 826661370B14705F17F4B135 /* Check Pods Manifest.lock */, 208 | 6003F586195388D20070C39A /* Sources */, 209 | 6003F587195388D20070C39A /* Frameworks */, 210 | 6003F588195388D20070C39A /* Resources */, 211 | D5B6868B1A4031A7277EABB8 /* Copy Pods Resources */, 212 | ); 213 | buildRules = ( 214 | ); 215 | dependencies = ( 216 | ); 217 | name = iPerspective; 218 | productName = iPerspective; 219 | productReference = 6003F58A195388D20070C39A /* iPerspective.app */; 220 | productType = "com.apple.product-type.application"; 221 | }; 222 | 6003F5AD195388D20070C39A /* Tests */ = { 223 | isa = PBXNativeTarget; 224 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "Tests" */; 225 | buildPhases = ( 226 | 609DDFE3E4B628C697C7E8BE /* Check Pods Manifest.lock */, 227 | 6003F5AA195388D20070C39A /* Sources */, 228 | 6003F5AB195388D20070C39A /* Frameworks */, 229 | 6003F5AC195388D20070C39A /* Resources */, 230 | 668FC5A23C4C062C11E306B2 /* Copy Pods Resources */, 231 | ); 232 | buildRules = ( 233 | ); 234 | dependencies = ( 235 | 6003F5B4195388D20070C39A /* PBXTargetDependency */, 236 | ); 237 | name = Tests; 238 | productName = iPerspectiveTests; 239 | productReference = 6003F5AE195388D20070C39A /* Tests.xctest */; 240 | productType = "com.apple.product-type.bundle.unit-test"; 241 | }; 242 | /* End PBXNativeTarget section */ 243 | 244 | /* Begin PBXProject section */ 245 | 6003F582195388D10070C39A /* Project object */ = { 246 | isa = PBXProject; 247 | attributes = { 248 | CLASSPREFIX = EP; 249 | LastUpgradeCheck = 0810; 250 | ORGANIZATIONNAME = "Eric Pinet"; 251 | TargetAttributes = { 252 | 6003F589195388D20070C39A = { 253 | DevelopmentTeam = NU5E6U97UG; 254 | }; 255 | 6003F5AD195388D20070C39A = { 256 | DevelopmentTeam = NU5E6U97UG; 257 | TestTargetID = 6003F589195388D20070C39A; 258 | }; 259 | }; 260 | }; 261 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "iPerspective" */; 262 | compatibilityVersion = "Xcode 3.2"; 263 | developmentRegion = English; 264 | hasScannedForEncodings = 0; 265 | knownRegions = ( 266 | en, 267 | Base, 268 | ); 269 | mainGroup = 6003F581195388D10070C39A; 270 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 271 | projectDirPath = ""; 272 | projectRoot = ""; 273 | targets = ( 274 | 6003F589195388D20070C39A /* iPerspective */, 275 | 6003F5AD195388D20070C39A /* Tests */, 276 | ); 277 | }; 278 | /* End PBXProject section */ 279 | 280 | /* Begin PBXResourcesBuildPhase section */ 281 | 6003F588195388D20070C39A /* Resources */ = { 282 | isa = PBXResourcesBuildPhase; 283 | buildActionMask = 2147483647; 284 | files = ( 285 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 286 | 6003F5A1195388D20070C39A /* Main_iPhone.storyboard in Resources */, 287 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 288 | ); 289 | runOnlyForDeploymentPostprocessing = 0; 290 | }; 291 | 6003F5AC195388D20070C39A /* Resources */ = { 292 | isa = PBXResourcesBuildPhase; 293 | buildActionMask = 2147483647; 294 | files = ( 295 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, 296 | ); 297 | runOnlyForDeploymentPostprocessing = 0; 298 | }; 299 | /* End PBXResourcesBuildPhase section */ 300 | 301 | /* Begin PBXShellScriptBuildPhase section */ 302 | 609DDFE3E4B628C697C7E8BE /* Check Pods Manifest.lock */ = { 303 | isa = PBXShellScriptBuildPhase; 304 | buildActionMask = 2147483647; 305 | files = ( 306 | ); 307 | inputPaths = ( 308 | ); 309 | name = "Check Pods Manifest.lock"; 310 | outputPaths = ( 311 | ); 312 | runOnlyForDeploymentPostprocessing = 0; 313 | shellPath = /bin/sh; 314 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 315 | showEnvVarsInLog = 0; 316 | }; 317 | 668FC5A23C4C062C11E306B2 /* Copy Pods Resources */ = { 318 | isa = PBXShellScriptBuildPhase; 319 | buildActionMask = 2147483647; 320 | files = ( 321 | ); 322 | inputPaths = ( 323 | ); 324 | name = "Copy Pods Resources"; 325 | outputPaths = ( 326 | ); 327 | runOnlyForDeploymentPostprocessing = 0; 328 | shellPath = /bin/sh; 329 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh\"\n"; 330 | showEnvVarsInLog = 0; 331 | }; 332 | 826661370B14705F17F4B135 /* Check Pods Manifest.lock */ = { 333 | isa = PBXShellScriptBuildPhase; 334 | buildActionMask = 2147483647; 335 | files = ( 336 | ); 337 | inputPaths = ( 338 | ); 339 | name = "Check Pods Manifest.lock"; 340 | outputPaths = ( 341 | ); 342 | runOnlyForDeploymentPostprocessing = 0; 343 | shellPath = /bin/sh; 344 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 345 | showEnvVarsInLog = 0; 346 | }; 347 | D5B6868B1A4031A7277EABB8 /* Copy Pods Resources */ = { 348 | isa = PBXShellScriptBuildPhase; 349 | buildActionMask = 2147483647; 350 | files = ( 351 | ); 352 | inputPaths = ( 353 | ); 354 | name = "Copy Pods Resources"; 355 | outputPaths = ( 356 | ); 357 | runOnlyForDeploymentPostprocessing = 0; 358 | shellPath = /bin/sh; 359 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-iPerspective/Pods-iPerspective-resources.sh\"\n"; 360 | showEnvVarsInLog = 0; 361 | }; 362 | /* End PBXShellScriptBuildPhase section */ 363 | 364 | /* Begin PBXSourcesBuildPhase section */ 365 | 6003F586195388D20070C39A /* Sources */ = { 366 | isa = PBXSourcesBuildPhase; 367 | buildActionMask = 2147483647; 368 | files = ( 369 | 97B550131A5230DB00D6580C /* EPViewController2.m in Sources */, 370 | 6003F59E195388D20070C39A /* EPAppDelegate.m in Sources */, 371 | 6003F5A7195388D20070C39A /* EPViewController.m in Sources */, 372 | 6003F59A195388D20070C39A /* main.m in Sources */, 373 | ); 374 | runOnlyForDeploymentPostprocessing = 0; 375 | }; 376 | 6003F5AA195388D20070C39A /* Sources */ = { 377 | isa = PBXSourcesBuildPhase; 378 | buildActionMask = 2147483647; 379 | files = ( 380 | 6003F5BC195388D20070C39A /* Tests.m in Sources */, 381 | ); 382 | runOnlyForDeploymentPostprocessing = 0; 383 | }; 384 | /* End PBXSourcesBuildPhase section */ 385 | 386 | /* Begin PBXTargetDependency section */ 387 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { 388 | isa = PBXTargetDependency; 389 | target = 6003F589195388D20070C39A /* iPerspective */; 390 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; 391 | }; 392 | /* End PBXTargetDependency section */ 393 | 394 | /* Begin PBXVariantGroup section */ 395 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 396 | isa = PBXVariantGroup; 397 | children = ( 398 | 6003F597195388D20070C39A /* en */, 399 | ); 400 | name = InfoPlist.strings; 401 | sourceTree = ""; 402 | }; 403 | 6003F59F195388D20070C39A /* Main_iPhone.storyboard */ = { 404 | isa = PBXVariantGroup; 405 | children = ( 406 | 6003F5A0195388D20070C39A /* Base */, 407 | ); 408 | name = Main_iPhone.storyboard; 409 | sourceTree = ""; 410 | }; 411 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { 412 | isa = PBXVariantGroup; 413 | children = ( 414 | 6003F5B9195388D20070C39A /* en */, 415 | ); 416 | name = InfoPlist.strings; 417 | sourceTree = ""; 418 | }; 419 | /* End PBXVariantGroup section */ 420 | 421 | /* Begin XCBuildConfiguration section */ 422 | 6003F5BD195388D20070C39A /* Debug */ = { 423 | isa = XCBuildConfiguration; 424 | buildSettings = { 425 | ALWAYS_SEARCH_USER_PATHS = NO; 426 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 427 | CLANG_CXX_LIBRARY = "libc++"; 428 | CLANG_ENABLE_MODULES = YES; 429 | CLANG_ENABLE_OBJC_ARC = YES; 430 | CLANG_WARN_BOOL_CONVERSION = YES; 431 | CLANG_WARN_CONSTANT_CONVERSION = YES; 432 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 433 | CLANG_WARN_EMPTY_BODY = YES; 434 | CLANG_WARN_ENUM_CONVERSION = YES; 435 | CLANG_WARN_INFINITE_RECURSION = YES; 436 | CLANG_WARN_INT_CONVERSION = YES; 437 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 438 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 439 | CLANG_WARN_UNREACHABLE_CODE = YES; 440 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 441 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 442 | COPY_PHASE_STRIP = NO; 443 | ENABLE_STRICT_OBJC_MSGSEND = YES; 444 | ENABLE_TESTABILITY = YES; 445 | GCC_C_LANGUAGE_STANDARD = gnu99; 446 | GCC_DYNAMIC_NO_PIC = NO; 447 | GCC_NO_COMMON_BLOCKS = YES; 448 | GCC_OPTIMIZATION_LEVEL = 0; 449 | GCC_PREPROCESSOR_DEFINITIONS = ( 450 | "DEBUG=1", 451 | "$(inherited)", 452 | ); 453 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 454 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 455 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 456 | GCC_WARN_UNDECLARED_SELECTOR = YES; 457 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 458 | GCC_WARN_UNUSED_FUNCTION = YES; 459 | GCC_WARN_UNUSED_VARIABLE = YES; 460 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 461 | ONLY_ACTIVE_ARCH = YES; 462 | SDKROOT = iphoneos; 463 | TARGETED_DEVICE_FAMILY = "1,2"; 464 | }; 465 | name = Debug; 466 | }; 467 | 6003F5BE195388D20070C39A /* Release */ = { 468 | isa = XCBuildConfiguration; 469 | buildSettings = { 470 | ALWAYS_SEARCH_USER_PATHS = NO; 471 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 472 | CLANG_CXX_LIBRARY = "libc++"; 473 | CLANG_ENABLE_MODULES = YES; 474 | CLANG_ENABLE_OBJC_ARC = YES; 475 | CLANG_WARN_BOOL_CONVERSION = YES; 476 | CLANG_WARN_CONSTANT_CONVERSION = YES; 477 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 478 | CLANG_WARN_EMPTY_BODY = YES; 479 | CLANG_WARN_ENUM_CONVERSION = YES; 480 | CLANG_WARN_INFINITE_RECURSION = YES; 481 | CLANG_WARN_INT_CONVERSION = YES; 482 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 483 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 484 | CLANG_WARN_UNREACHABLE_CODE = YES; 485 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 486 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 487 | COPY_PHASE_STRIP = YES; 488 | ENABLE_NS_ASSERTIONS = NO; 489 | ENABLE_STRICT_OBJC_MSGSEND = YES; 490 | GCC_C_LANGUAGE_STANDARD = gnu99; 491 | GCC_NO_COMMON_BLOCKS = YES; 492 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 493 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 494 | GCC_WARN_UNDECLARED_SELECTOR = YES; 495 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 496 | GCC_WARN_UNUSED_FUNCTION = YES; 497 | GCC_WARN_UNUSED_VARIABLE = YES; 498 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 499 | SDKROOT = iphoneos; 500 | TARGETED_DEVICE_FAMILY = "1,2"; 501 | VALIDATE_PRODUCT = YES; 502 | }; 503 | name = Release; 504 | }; 505 | 6003F5C0195388D20070C39A /* Debug */ = { 506 | isa = XCBuildConfiguration; 507 | baseConfigurationReference = 9DB7ED1B3A2629190696D368 /* Pods-iPerspective.debug.xcconfig */; 508 | buildSettings = { 509 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 510 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 511 | CODE_SIGN_IDENTITY = "iPhone Developer"; 512 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 513 | DEVELOPMENT_TEAM = NU5E6U97UG; 514 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 515 | GCC_PREFIX_HEADER = "iPerspective/iPerspective-Prefix.pch"; 516 | INFOPLIST_FILE = "iPerspective/iPerspective-Info.plist"; 517 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 518 | PRODUCT_NAME = "$(TARGET_NAME)"; 519 | PROVISIONING_PROFILE = ""; 520 | TARGETED_DEVICE_FAMILY = 1; 521 | WRAPPER_EXTENSION = app; 522 | }; 523 | name = Debug; 524 | }; 525 | 6003F5C1195388D20070C39A /* Release */ = { 526 | isa = XCBuildConfiguration; 527 | baseConfigurationReference = 37BD547F0A44B75E133AD4A9 /* Pods-iPerspective.release.xcconfig */; 528 | buildSettings = { 529 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 530 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 531 | CODE_SIGN_IDENTITY = "iPhone Developer"; 532 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 533 | DEVELOPMENT_TEAM = NU5E6U97UG; 534 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 535 | GCC_PREFIX_HEADER = "iPerspective/iPerspective-Prefix.pch"; 536 | INFOPLIST_FILE = "iPerspective/iPerspective-Info.plist"; 537 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 538 | PRODUCT_NAME = "$(TARGET_NAME)"; 539 | PROVISIONING_PROFILE = ""; 540 | TARGETED_DEVICE_FAMILY = 1; 541 | WRAPPER_EXTENSION = app; 542 | }; 543 | name = Release; 544 | }; 545 | 6003F5C3195388D20070C39A /* Debug */ = { 546 | isa = XCBuildConfiguration; 547 | baseConfigurationReference = 5C339340EF2AABEE28924386 /* Pods-Tests.debug.xcconfig */; 548 | buildSettings = { 549 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/iPerspective.app/iPerspective"; 550 | DEVELOPMENT_TEAM = NU5E6U97UG; 551 | FRAMEWORK_SEARCH_PATHS = ( 552 | "$(SDKROOT)/Developer/Library/Frameworks", 553 | "$(inherited)", 554 | "$(DEVELOPER_FRAMEWORKS_DIR)", 555 | ); 556 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 557 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 558 | GCC_PREPROCESSOR_DEFINITIONS = ( 559 | "DEBUG=1", 560 | "$(inherited)", 561 | ); 562 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 563 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 564 | PRODUCT_NAME = "$(TARGET_NAME)"; 565 | TEST_HOST = "$(BUNDLE_LOADER)"; 566 | WRAPPER_EXTENSION = xctest; 567 | }; 568 | name = Debug; 569 | }; 570 | 6003F5C4195388D20070C39A /* Release */ = { 571 | isa = XCBuildConfiguration; 572 | baseConfigurationReference = 746CB00AB6CCFC8A46B9D033 /* Pods-Tests.release.xcconfig */; 573 | buildSettings = { 574 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/iPerspective.app/iPerspective"; 575 | DEVELOPMENT_TEAM = NU5E6U97UG; 576 | FRAMEWORK_SEARCH_PATHS = ( 577 | "$(SDKROOT)/Developer/Library/Frameworks", 578 | "$(inherited)", 579 | "$(DEVELOPER_FRAMEWORKS_DIR)", 580 | ); 581 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 582 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 583 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 584 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 585 | PRODUCT_NAME = "$(TARGET_NAME)"; 586 | TEST_HOST = "$(BUNDLE_LOADER)"; 587 | WRAPPER_EXTENSION = xctest; 588 | }; 589 | name = Release; 590 | }; 591 | /* End XCBuildConfiguration section */ 592 | 593 | /* Begin XCConfigurationList section */ 594 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "iPerspective" */ = { 595 | isa = XCConfigurationList; 596 | buildConfigurations = ( 597 | 6003F5BD195388D20070C39A /* Debug */, 598 | 6003F5BE195388D20070C39A /* Release */, 599 | ); 600 | defaultConfigurationIsVisible = 0; 601 | defaultConfigurationName = Release; 602 | }; 603 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "iPerspective" */ = { 604 | isa = XCConfigurationList; 605 | buildConfigurations = ( 606 | 6003F5C0195388D20070C39A /* Debug */, 607 | 6003F5C1195388D20070C39A /* Release */, 608 | ); 609 | defaultConfigurationIsVisible = 0; 610 | defaultConfigurationName = Release; 611 | }; 612 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "Tests" */ = { 613 | isa = XCConfigurationList; 614 | buildConfigurations = ( 615 | 6003F5C3195388D20070C39A /* Debug */, 616 | 6003F5C4195388D20070C39A /* Release */, 617 | ); 618 | defaultConfigurationIsVisible = 0; 619 | defaultConfigurationName = Release; 620 | }; 621 | /* End XCConfigurationList section */ 622 | }; 623 | rootObject = 6003F582195388D10070C39A /* Project object */; 624 | } 625 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0610689169D0B9E2FE65CBD5 /* UIImageView+Perspective.h in Headers */ = {isa = PBXBuildFile; fileRef = C62802BAAC2FDF75FBAF1F92 /* UIImageView+Perspective.h */; }; 11 | 0EEF34A913B4BF53806756A9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2583055C7A69725913473252 /* Foundation.framework */; }; 12 | 14D08432B44D43AC688475FA /* UIImageViewPerspective.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1FC2232C4D3CB3E655B7B8 /* UIImageViewPerspective.h */; }; 13 | 21E08FFFF1FA6555E5AF3FCF /* UIImageViewPerspective.m in Sources */ = {isa = PBXBuildFile; fileRef = AEB44A52741E04052CECE9BA /* UIImageViewPerspective.m */; }; 14 | 252E1FF73DE9982D1E7EDE73 /* UIImageView+Perspective.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED0E0BD53820148A9E90F8A /* UIImageView+Perspective.m */; }; 15 | 31324549049DBB99B024F0A8 /* Pods-Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C810C82A7331E14E00DC83 /* Pods-Tests-dummy.m */; }; 16 | 3BD208F48082484C1C4183D7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2583055C7A69725913473252 /* Foundation.framework */; }; 17 | 3C008A7C86E3E17AEB4E3039 /* Pods-iPerspective-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 142663CC77F9FF7A9710F0AD /* Pods-iPerspective-dummy.m */; }; 18 | 558DE71FA88A6BE4AE602D99 /* Pods-Tests-iPerspective-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F6916491A542829B26C1B7D /* Pods-Tests-iPerspective-dummy.m */; }; 19 | 773CE9353A52064B11C34C90 /* UIImageView+Perspective.h in Headers */ = {isa = PBXBuildFile; fileRef = C62802BAAC2FDF75FBAF1F92 /* UIImageView+Perspective.h */; }; 20 | B94C654A0F51D84411B701BA /* UIImageViewPerspective.m in Sources */ = {isa = PBXBuildFile; fileRef = AEB44A52741E04052CECE9BA /* UIImageViewPerspective.m */; }; 21 | C02050A7DC02552A67191B32 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2583055C7A69725913473252 /* Foundation.framework */; }; 22 | C162A5147301D435542DA857 /* Pods-iPerspective-iPerspective-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F141F41B794BA68EED77BD13 /* Pods-iPerspective-iPerspective-dummy.m */; }; 23 | CE8D075B4943863153B24BBE /* UIImageViewPerspective.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1FC2232C4D3CB3E655B7B8 /* UIImageViewPerspective.h */; }; 24 | D38368A4DE83779057CCAE30 /* UIImageView+Perspective.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED0E0BD53820148A9E90F8A /* UIImageView+Perspective.m */; }; 25 | DD1BB9EFF0FCAB3B7C3F7037 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2583055C7A69725913473252 /* Foundation.framework */; }; 26 | /* End PBXBuildFile section */ 27 | 28 | /* Begin PBXContainerItemProxy section */ 29 | 3761846384EB43115F393830 /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = 75C4923DC87E12B3FCF85A8E /* Project object */; 32 | proxyType = 1; 33 | remoteGlobalIDString = DDA3A847A314BB449A13AC7B; 34 | remoteInfo = "Pods-iPerspective-iPerspective"; 35 | }; 36 | 5ADFD9A58BBED0E53AE40413 /* PBXContainerItemProxy */ = { 37 | isa = PBXContainerItemProxy; 38 | containerPortal = 75C4923DC87E12B3FCF85A8E /* Project object */; 39 | proxyType = 1; 40 | remoteGlobalIDString = 131E1FB43D686FB2F7F70A37; 41 | remoteInfo = iPerspective; 42 | }; 43 | 6E4A11822FD9A3A45F92436F /* PBXContainerItemProxy */ = { 44 | isa = PBXContainerItemProxy; 45 | containerPortal = 75C4923DC87E12B3FCF85A8E /* Project object */; 46 | proxyType = 1; 47 | remoteGlobalIDString = 73CBA39468006764631DFA61; 48 | remoteInfo = "Pods-Tests-iPerspective"; 49 | }; 50 | 8C4A4A9EE65D96FF6DD0C827 /* PBXContainerItemProxy */ = { 51 | isa = PBXContainerItemProxy; 52 | containerPortal = 75C4923DC87E12B3FCF85A8E /* Project object */; 53 | proxyType = 1; 54 | remoteGlobalIDString = 131E1FB43D686FB2F7F70A37; 55 | remoteInfo = iPerspective; 56 | }; 57 | /* End PBXContainerItemProxy section */ 58 | 59 | /* Begin PBXFileReference section */ 60 | 05694AA4D6612624BC0781DA /* Pods-iPerspective-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-iPerspective-acknowledgements.plist"; sourceTree = ""; }; 61 | 142663CC77F9FF7A9710F0AD /* Pods-iPerspective-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-iPerspective-dummy.m"; sourceTree = ""; }; 62 | 1C4DB33F5891DAFD167F3E0F /* libPods-iPerspective.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-iPerspective.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 63 | 1C7E863E9CBDF399A4E03239 /* libPods-Tests-iPerspective.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Tests-iPerspective.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 64 | 21DACD2308E6A49BD35301BD /* Pods-iPerspective.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-iPerspective.release.xcconfig"; sourceTree = ""; }; 65 | 2214BF26E081D8DCF587D02B /* Pods-Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-resources.sh"; sourceTree = ""; }; 66 | 2583055C7A69725913473252 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 67 | 37ACFE7A3A2A94C323C00C41 /* Pods-Tests-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-environment.h"; sourceTree = ""; }; 68 | 3DD552E344AAEEA8B876750E /* Pods-iPerspective-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-iPerspective-resources.sh"; sourceTree = ""; }; 69 | 41B910CBC7806E050ED01808 /* Pods-iPerspective-iPerspective.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-iPerspective-iPerspective.xcconfig"; path = "../Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective.xcconfig"; sourceTree = ""; }; 70 | 4ED0E0BD53820148A9E90F8A /* UIImageView+Perspective.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+Perspective.m"; path = "Pod/Classes/UIImageView+Perspective.m"; sourceTree = ""; }; 71 | 55317E74F0BEF5F6AD12629A /* iPerspective.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iPerspective.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 72 | 5F6916491A542829B26C1B7D /* Pods-Tests-iPerspective-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-iPerspective-dummy.m"; sourceTree = ""; }; 73 | 5FAAFEAA1447ECE738374BDC /* Pods-iPerspective-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-iPerspective-environment.h"; sourceTree = ""; }; 74 | 669DB9DBD42C69FDE595198E /* Pods-Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-acknowledgements.markdown"; sourceTree = ""; }; 75 | 6E17A4F6251C2416EF97C5AA /* libPods-iPerspective-iPerspective.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-iPerspective-iPerspective.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 76 | 71BCDFF18875B69001E08951 /* Pods-Tests-iPerspective.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-iPerspective.xcconfig"; sourceTree = ""; }; 77 | 7485202AD968CDE93DFBC89C /* Pods-iPerspective-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-iPerspective-acknowledgements.markdown"; sourceTree = ""; }; 78 | 89E3CB23BA537F2219ADC5C0 /* Pods-Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests.release.xcconfig"; sourceTree = ""; }; 79 | AB512EDD6CD1840F486FEECC /* libPods-Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 80 | AEB44A52741E04052CECE9BA /* UIImageViewPerspective.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UIImageViewPerspective.m; path = Pod/Classes/UIImageViewPerspective.m; sourceTree = ""; }; 81 | B0C096F0CBEE88550F804DB8 /* Pods-Tests-iPerspective-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-iPerspective-Private.xcconfig"; sourceTree = ""; }; 82 | B74E075FED4E180C4BD52C01 /* Pods-Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests.debug.xcconfig"; sourceTree = ""; }; 83 | B9B521B37E8B1D765A0DB79C /* Pods-Tests-iPerspective-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-iPerspective-prefix.pch"; sourceTree = ""; }; 84 | BA1FC2232C4D3CB3E655B7B8 /* UIImageViewPerspective.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UIImageViewPerspective.h; path = Pod/Classes/UIImageViewPerspective.h; sourceTree = ""; }; 85 | C62802BAAC2FDF75FBAF1F92 /* UIImageView+Perspective.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+Perspective.h"; path = "Pod/Classes/UIImageView+Perspective.h"; sourceTree = ""; }; 86 | C6BFFD12B9363527B7D24CD2 /* Pods-iPerspective-iPerspective-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Pods-iPerspective-iPerspective-prefix.pch"; path = "../Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-prefix.pch"; sourceTree = ""; }; 87 | C7F6DC1A2FC3FD67C8ADF8C1 /* Pods-iPerspective-iPerspective-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-iPerspective-iPerspective-Private.xcconfig"; path = "../Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-Private.xcconfig"; sourceTree = ""; }; 88 | CBCB829D8FB66BB92FA6935D /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 89 | CE49A499F222009396678E67 /* Pods-Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-acknowledgements.plist"; sourceTree = ""; }; 90 | D556C9B7C9FEF2177DD396C4 /* Pods-iPerspective.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-iPerspective.debug.xcconfig"; sourceTree = ""; }; 91 | F141F41B794BA68EED77BD13 /* Pods-iPerspective-iPerspective-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Pods-iPerspective-iPerspective-dummy.m"; path = "../Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-dummy.m"; sourceTree = ""; }; 92 | F7C810C82A7331E14E00DC83 /* Pods-Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-dummy.m"; sourceTree = ""; }; 93 | /* End PBXFileReference section */ 94 | 95 | /* Begin PBXFrameworksBuildPhase section */ 96 | 03039FBCB5CD04C0D08927E2 /* Frameworks */ = { 97 | isa = PBXFrameworksBuildPhase; 98 | buildActionMask = 2147483647; 99 | files = ( 100 | C02050A7DC02552A67191B32 /* Foundation.framework in Frameworks */, 101 | ); 102 | runOnlyForDeploymentPostprocessing = 0; 103 | }; 104 | 261E553D4659D81062D613AE /* Frameworks */ = { 105 | isa = PBXFrameworksBuildPhase; 106 | buildActionMask = 2147483647; 107 | files = ( 108 | ); 109 | runOnlyForDeploymentPostprocessing = 0; 110 | }; 111 | 52CE3ED29B70EBD0FB0CC461 /* Frameworks */ = { 112 | isa = PBXFrameworksBuildPhase; 113 | buildActionMask = 2147483647; 114 | files = ( 115 | 3BD208F48082484C1C4183D7 /* Foundation.framework in Frameworks */, 116 | ); 117 | runOnlyForDeploymentPostprocessing = 0; 118 | }; 119 | D6629B690A6585914818253F /* Frameworks */ = { 120 | isa = PBXFrameworksBuildPhase; 121 | buildActionMask = 2147483647; 122 | files = ( 123 | 0EEF34A913B4BF53806756A9 /* Foundation.framework in Frameworks */, 124 | ); 125 | runOnlyForDeploymentPostprocessing = 0; 126 | }; 127 | D6AEAD43FB3D12EA8E438833 /* Frameworks */ = { 128 | isa = PBXFrameworksBuildPhase; 129 | buildActionMask = 2147483647; 130 | files = ( 131 | DD1BB9EFF0FCAB3B7C3F7037 /* Foundation.framework in Frameworks */, 132 | ); 133 | runOnlyForDeploymentPostprocessing = 0; 134 | }; 135 | /* End PBXFrameworksBuildPhase section */ 136 | 137 | /* Begin PBXGroup section */ 138 | 5D86A9F40343EACF56AADA19 /* Targets Support Files */ = { 139 | isa = PBXGroup; 140 | children = ( 141 | E34B68E157B40DC3C01C8279 /* Pods-Tests */, 142 | E260C4EA06D3AA48AEC2F053 /* Pods-iPerspective */, 143 | ); 144 | name = "Targets Support Files"; 145 | sourceTree = ""; 146 | }; 147 | 7D766DABF3E10D2F37D0BDDD /* iPerspective */ = { 148 | isa = PBXGroup; 149 | children = ( 150 | C62802BAAC2FDF75FBAF1F92 /* UIImageView+Perspective.h */, 151 | 4ED0E0BD53820148A9E90F8A /* UIImageView+Perspective.m */, 152 | BA1FC2232C4D3CB3E655B7B8 /* UIImageViewPerspective.h */, 153 | AEB44A52741E04052CECE9BA /* UIImageViewPerspective.m */, 154 | B320CBE09FBBEBF9337266CB /* Support Files */, 155 | ); 156 | name = iPerspective; 157 | path = ../..; 158 | sourceTree = ""; 159 | }; 160 | 8A839677668320399D0757D0 /* Development Pods */ = { 161 | isa = PBXGroup; 162 | children = ( 163 | 7D766DABF3E10D2F37D0BDDD /* iPerspective */, 164 | ); 165 | name = "Development Pods"; 166 | sourceTree = ""; 167 | }; 168 | ACD26CABDE5B2A40E2208D56 = { 169 | isa = PBXGroup; 170 | children = ( 171 | CBCB829D8FB66BB92FA6935D /* Podfile */, 172 | 8A839677668320399D0757D0 /* Development Pods */, 173 | B325743FEBCCE20058095C72 /* Frameworks */, 174 | FBA6F9672F5A100990E9C86B /* Products */, 175 | 5D86A9F40343EACF56AADA19 /* Targets Support Files */, 176 | ); 177 | sourceTree = ""; 178 | }; 179 | B320CBE09FBBEBF9337266CB /* Support Files */ = { 180 | isa = PBXGroup; 181 | children = ( 182 | 71BCDFF18875B69001E08951 /* Pods-Tests-iPerspective.xcconfig */, 183 | B0C096F0CBEE88550F804DB8 /* Pods-Tests-iPerspective-Private.xcconfig */, 184 | 5F6916491A542829B26C1B7D /* Pods-Tests-iPerspective-dummy.m */, 185 | B9B521B37E8B1D765A0DB79C /* Pods-Tests-iPerspective-prefix.pch */, 186 | 41B910CBC7806E050ED01808 /* Pods-iPerspective-iPerspective.xcconfig */, 187 | C7F6DC1A2FC3FD67C8ADF8C1 /* Pods-iPerspective-iPerspective-Private.xcconfig */, 188 | F141F41B794BA68EED77BD13 /* Pods-iPerspective-iPerspective-dummy.m */, 189 | C6BFFD12B9363527B7D24CD2 /* Pods-iPerspective-iPerspective-prefix.pch */, 190 | ); 191 | name = "Support Files"; 192 | path = "Example/Pods/Target Support Files/Pods-Tests-iPerspective"; 193 | sourceTree = ""; 194 | }; 195 | B325743FEBCCE20058095C72 /* Frameworks */ = { 196 | isa = PBXGroup; 197 | children = ( 198 | E200C829695F16F11D25517D /* iOS */, 199 | ); 200 | name = Frameworks; 201 | sourceTree = ""; 202 | }; 203 | E200C829695F16F11D25517D /* iOS */ = { 204 | isa = PBXGroup; 205 | children = ( 206 | 2583055C7A69725913473252 /* Foundation.framework */, 207 | ); 208 | name = iOS; 209 | sourceTree = ""; 210 | }; 211 | E260C4EA06D3AA48AEC2F053 /* Pods-iPerspective */ = { 212 | isa = PBXGroup; 213 | children = ( 214 | 7485202AD968CDE93DFBC89C /* Pods-iPerspective-acknowledgements.markdown */, 215 | 05694AA4D6612624BC0781DA /* Pods-iPerspective-acknowledgements.plist */, 216 | 142663CC77F9FF7A9710F0AD /* Pods-iPerspective-dummy.m */, 217 | 5FAAFEAA1447ECE738374BDC /* Pods-iPerspective-environment.h */, 218 | 3DD552E344AAEEA8B876750E /* Pods-iPerspective-resources.sh */, 219 | D556C9B7C9FEF2177DD396C4 /* Pods-iPerspective.debug.xcconfig */, 220 | 21DACD2308E6A49BD35301BD /* Pods-iPerspective.release.xcconfig */, 221 | ); 222 | name = "Pods-iPerspective"; 223 | path = "Target Support Files/Pods-iPerspective"; 224 | sourceTree = ""; 225 | }; 226 | E34B68E157B40DC3C01C8279 /* Pods-Tests */ = { 227 | isa = PBXGroup; 228 | children = ( 229 | 669DB9DBD42C69FDE595198E /* Pods-Tests-acknowledgements.markdown */, 230 | CE49A499F222009396678E67 /* Pods-Tests-acknowledgements.plist */, 231 | F7C810C82A7331E14E00DC83 /* Pods-Tests-dummy.m */, 232 | 37ACFE7A3A2A94C323C00C41 /* Pods-Tests-environment.h */, 233 | 2214BF26E081D8DCF587D02B /* Pods-Tests-resources.sh */, 234 | B74E075FED4E180C4BD52C01 /* Pods-Tests.debug.xcconfig */, 235 | 89E3CB23BA537F2219ADC5C0 /* Pods-Tests.release.xcconfig */, 236 | ); 237 | name = "Pods-Tests"; 238 | path = "Target Support Files/Pods-Tests"; 239 | sourceTree = ""; 240 | }; 241 | FBA6F9672F5A100990E9C86B /* Products */ = { 242 | isa = PBXGroup; 243 | children = ( 244 | 55317E74F0BEF5F6AD12629A /* iPerspective.bundle */, 245 | AB512EDD6CD1840F486FEECC /* libPods-Tests.a */, 246 | 1C7E863E9CBDF399A4E03239 /* libPods-Tests-iPerspective.a */, 247 | 1C4DB33F5891DAFD167F3E0F /* libPods-iPerspective.a */, 248 | 6E17A4F6251C2416EF97C5AA /* libPods-iPerspective-iPerspective.a */, 249 | ); 250 | name = Products; 251 | sourceTree = ""; 252 | }; 253 | /* End PBXGroup section */ 254 | 255 | /* Begin PBXHeadersBuildPhase section */ 256 | 0BB5E62F777D0CD8C2B745E8 /* Headers */ = { 257 | isa = PBXHeadersBuildPhase; 258 | buildActionMask = 2147483647; 259 | files = ( 260 | 0610689169D0B9E2FE65CBD5 /* UIImageView+Perspective.h in Headers */, 261 | 14D08432B44D43AC688475FA /* UIImageViewPerspective.h in Headers */, 262 | ); 263 | runOnlyForDeploymentPostprocessing = 0; 264 | }; 265 | CA8A60678A169F7D900A6DE7 /* Headers */ = { 266 | isa = PBXHeadersBuildPhase; 267 | buildActionMask = 2147483647; 268 | files = ( 269 | 773CE9353A52064B11C34C90 /* UIImageView+Perspective.h in Headers */, 270 | CE8D075B4943863153B24BBE /* UIImageViewPerspective.h in Headers */, 271 | ); 272 | runOnlyForDeploymentPostprocessing = 0; 273 | }; 274 | /* End PBXHeadersBuildPhase section */ 275 | 276 | /* Begin PBXNativeTarget section */ 277 | 131E1FB43D686FB2F7F70A37 /* iPerspective */ = { 278 | isa = PBXNativeTarget; 279 | buildConfigurationList = 92B23E06EAFAFFC2A7F438B0 /* Build configuration list for PBXNativeTarget "iPerspective" */; 280 | buildPhases = ( 281 | 900DDB4EA2D2C9CC463262D9 /* Sources */, 282 | 261E553D4659D81062D613AE /* Frameworks */, 283 | 7227050A000CB6A113DEFAC8 /* Resources */, 284 | ); 285 | buildRules = ( 286 | ); 287 | dependencies = ( 288 | ); 289 | name = iPerspective; 290 | productName = iPerspective; 291 | productReference = 55317E74F0BEF5F6AD12629A /* iPerspective.bundle */; 292 | productType = "com.apple.product-type.bundle"; 293 | }; 294 | 73CBA39468006764631DFA61 /* Pods-Tests-iPerspective */ = { 295 | isa = PBXNativeTarget; 296 | buildConfigurationList = 13A1490BE8A556EE3CB4191F /* Build configuration list for PBXNativeTarget "Pods-Tests-iPerspective" */; 297 | buildPhases = ( 298 | 7EB86BD78F718024FCEE3150 /* Sources */, 299 | D6629B690A6585914818253F /* Frameworks */, 300 | 0BB5E62F777D0CD8C2B745E8 /* Headers */, 301 | ); 302 | buildRules = ( 303 | ); 304 | dependencies = ( 305 | C3CD37AB902885126A6B1020 /* PBXTargetDependency */, 306 | ); 307 | name = "Pods-Tests-iPerspective"; 308 | productName = "Pods-Tests-iPerspective"; 309 | productReference = 1C7E863E9CBDF399A4E03239 /* libPods-Tests-iPerspective.a */; 310 | productType = "com.apple.product-type.library.static"; 311 | }; 312 | 7A551D98FFF3EB30810E7407 /* Pods-iPerspective */ = { 313 | isa = PBXNativeTarget; 314 | buildConfigurationList = 8E0386A0D8A7B93AF6669CDF /* Build configuration list for PBXNativeTarget "Pods-iPerspective" */; 315 | buildPhases = ( 316 | FFACE41F4CF952F50EAC9042 /* Sources */, 317 | 52CE3ED29B70EBD0FB0CC461 /* Frameworks */, 318 | ); 319 | buildRules = ( 320 | ); 321 | dependencies = ( 322 | 40542BA548FDA2CD4EC2150C /* PBXTargetDependency */, 323 | ); 324 | name = "Pods-iPerspective"; 325 | productName = "Pods-iPerspective"; 326 | productReference = 1C4DB33F5891DAFD167F3E0F /* libPods-iPerspective.a */; 327 | productType = "com.apple.product-type.library.static"; 328 | }; 329 | 88BA856DA61956A24E1D0D74 /* Pods-Tests */ = { 330 | isa = PBXNativeTarget; 331 | buildConfigurationList = A467F95C6751BAFE1A79F52E /* Build configuration list for PBXNativeTarget "Pods-Tests" */; 332 | buildPhases = ( 333 | B68B4BA286FAC83B77E5A618 /* Sources */, 334 | D6AEAD43FB3D12EA8E438833 /* Frameworks */, 335 | ); 336 | buildRules = ( 337 | ); 338 | dependencies = ( 339 | 51E1B974ED264B4BC0BDCA79 /* PBXTargetDependency */, 340 | ); 341 | name = "Pods-Tests"; 342 | productName = "Pods-Tests"; 343 | productReference = AB512EDD6CD1840F486FEECC /* libPods-Tests.a */; 344 | productType = "com.apple.product-type.library.static"; 345 | }; 346 | DDA3A847A314BB449A13AC7B /* Pods-iPerspective-iPerspective */ = { 347 | isa = PBXNativeTarget; 348 | buildConfigurationList = 5B3B0AC5F931BBCFA1B125EA /* Build configuration list for PBXNativeTarget "Pods-iPerspective-iPerspective" */; 349 | buildPhases = ( 350 | 253EA9F945E56DE0E4E5F124 /* Sources */, 351 | 03039FBCB5CD04C0D08927E2 /* Frameworks */, 352 | CA8A60678A169F7D900A6DE7 /* Headers */, 353 | ); 354 | buildRules = ( 355 | ); 356 | dependencies = ( 357 | A5FCEFA2319CB1420A0059A2 /* PBXTargetDependency */, 358 | ); 359 | name = "Pods-iPerspective-iPerspective"; 360 | productName = "Pods-iPerspective-iPerspective"; 361 | productReference = 6E17A4F6251C2416EF97C5AA /* libPods-iPerspective-iPerspective.a */; 362 | productType = "com.apple.product-type.library.static"; 363 | }; 364 | /* End PBXNativeTarget section */ 365 | 366 | /* Begin PBXProject section */ 367 | 75C4923DC87E12B3FCF85A8E /* Project object */ = { 368 | isa = PBXProject; 369 | attributes = { 370 | LastUpgradeCheck = 0510; 371 | TargetAttributes = { 372 | 131E1FB43D686FB2F7F70A37 = { 373 | DevelopmentTeam = NU5E6U97UG; 374 | ProvisioningStyle = Automatic; 375 | }; 376 | }; 377 | }; 378 | buildConfigurationList = 5C2972CC07DD4528CFBF29D6 /* Build configuration list for PBXProject "Pods" */; 379 | compatibilityVersion = "Xcode 3.2"; 380 | developmentRegion = English; 381 | hasScannedForEncodings = 0; 382 | knownRegions = ( 383 | en, 384 | ); 385 | mainGroup = ACD26CABDE5B2A40E2208D56; 386 | productRefGroup = FBA6F9672F5A100990E9C86B /* Products */; 387 | projectDirPath = ""; 388 | projectRoot = ""; 389 | targets = ( 390 | 88BA856DA61956A24E1D0D74 /* Pods-Tests */, 391 | 73CBA39468006764631DFA61 /* Pods-Tests-iPerspective */, 392 | 7A551D98FFF3EB30810E7407 /* Pods-iPerspective */, 393 | DDA3A847A314BB449A13AC7B /* Pods-iPerspective-iPerspective */, 394 | 131E1FB43D686FB2F7F70A37 /* iPerspective */, 395 | ); 396 | }; 397 | /* End PBXProject section */ 398 | 399 | /* Begin PBXResourcesBuildPhase section */ 400 | 7227050A000CB6A113DEFAC8 /* Resources */ = { 401 | isa = PBXResourcesBuildPhase; 402 | buildActionMask = 2147483647; 403 | files = ( 404 | ); 405 | runOnlyForDeploymentPostprocessing = 0; 406 | }; 407 | /* End PBXResourcesBuildPhase section */ 408 | 409 | /* Begin PBXSourcesBuildPhase section */ 410 | 253EA9F945E56DE0E4E5F124 /* Sources */ = { 411 | isa = PBXSourcesBuildPhase; 412 | buildActionMask = 2147483647; 413 | files = ( 414 | C162A5147301D435542DA857 /* Pods-iPerspective-iPerspective-dummy.m in Sources */, 415 | 252E1FF73DE9982D1E7EDE73 /* UIImageView+Perspective.m in Sources */, 416 | B94C654A0F51D84411B701BA /* UIImageViewPerspective.m in Sources */, 417 | ); 418 | runOnlyForDeploymentPostprocessing = 0; 419 | }; 420 | 7EB86BD78F718024FCEE3150 /* Sources */ = { 421 | isa = PBXSourcesBuildPhase; 422 | buildActionMask = 2147483647; 423 | files = ( 424 | 558DE71FA88A6BE4AE602D99 /* Pods-Tests-iPerspective-dummy.m in Sources */, 425 | D38368A4DE83779057CCAE30 /* UIImageView+Perspective.m in Sources */, 426 | 21E08FFFF1FA6555E5AF3FCF /* UIImageViewPerspective.m in Sources */, 427 | ); 428 | runOnlyForDeploymentPostprocessing = 0; 429 | }; 430 | 900DDB4EA2D2C9CC463262D9 /* Sources */ = { 431 | isa = PBXSourcesBuildPhase; 432 | buildActionMask = 2147483647; 433 | files = ( 434 | ); 435 | runOnlyForDeploymentPostprocessing = 0; 436 | }; 437 | B68B4BA286FAC83B77E5A618 /* Sources */ = { 438 | isa = PBXSourcesBuildPhase; 439 | buildActionMask = 2147483647; 440 | files = ( 441 | 31324549049DBB99B024F0A8 /* Pods-Tests-dummy.m in Sources */, 442 | ); 443 | runOnlyForDeploymentPostprocessing = 0; 444 | }; 445 | FFACE41F4CF952F50EAC9042 /* Sources */ = { 446 | isa = PBXSourcesBuildPhase; 447 | buildActionMask = 2147483647; 448 | files = ( 449 | 3C008A7C86E3E17AEB4E3039 /* Pods-iPerspective-dummy.m in Sources */, 450 | ); 451 | runOnlyForDeploymentPostprocessing = 0; 452 | }; 453 | /* End PBXSourcesBuildPhase section */ 454 | 455 | /* Begin PBXTargetDependency section */ 456 | 40542BA548FDA2CD4EC2150C /* PBXTargetDependency */ = { 457 | isa = PBXTargetDependency; 458 | name = "Pods-iPerspective-iPerspective"; 459 | target = DDA3A847A314BB449A13AC7B /* Pods-iPerspective-iPerspective */; 460 | targetProxy = 3761846384EB43115F393830 /* PBXContainerItemProxy */; 461 | }; 462 | 51E1B974ED264B4BC0BDCA79 /* PBXTargetDependency */ = { 463 | isa = PBXTargetDependency; 464 | name = "Pods-Tests-iPerspective"; 465 | target = 73CBA39468006764631DFA61 /* Pods-Tests-iPerspective */; 466 | targetProxy = 6E4A11822FD9A3A45F92436F /* PBXContainerItemProxy */; 467 | }; 468 | A5FCEFA2319CB1420A0059A2 /* PBXTargetDependency */ = { 469 | isa = PBXTargetDependency; 470 | name = iPerspective; 471 | target = 131E1FB43D686FB2F7F70A37 /* iPerspective */; 472 | targetProxy = 5ADFD9A58BBED0E53AE40413 /* PBXContainerItemProxy */; 473 | }; 474 | C3CD37AB902885126A6B1020 /* PBXTargetDependency */ = { 475 | isa = PBXTargetDependency; 476 | name = iPerspective; 477 | target = 131E1FB43D686FB2F7F70A37 /* iPerspective */; 478 | targetProxy = 8C4A4A9EE65D96FF6DD0C827 /* PBXContainerItemProxy */; 479 | }; 480 | /* End PBXTargetDependency section */ 481 | 482 | /* Begin XCBuildConfiguration section */ 483 | 00891260DFE5D2F2A663A51D /* Debug */ = { 484 | isa = XCBuildConfiguration; 485 | buildSettings = { 486 | ALWAYS_SEARCH_USER_PATHS = NO; 487 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 488 | CLANG_CXX_LIBRARY = "libc++"; 489 | CLANG_ENABLE_MODULES = YES; 490 | CLANG_ENABLE_OBJC_ARC = YES; 491 | CLANG_WARN_BOOL_CONVERSION = YES; 492 | CLANG_WARN_CONSTANT_CONVERSION = YES; 493 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 494 | CLANG_WARN_EMPTY_BODY = YES; 495 | CLANG_WARN_ENUM_CONVERSION = YES; 496 | CLANG_WARN_INT_CONVERSION = YES; 497 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 498 | COPY_PHASE_STRIP = YES; 499 | GCC_C_LANGUAGE_STANDARD = gnu99; 500 | GCC_DYNAMIC_NO_PIC = NO; 501 | GCC_OPTIMIZATION_LEVEL = 0; 502 | GCC_PREPROCESSOR_DEFINITIONS = ( 503 | "DEBUG=1", 504 | "$(inherited)", 505 | ); 506 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 507 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 508 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 509 | GCC_WARN_UNDECLARED_SELECTOR = YES; 510 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 511 | GCC_WARN_UNUSED_FUNCTION = YES; 512 | GCC_WARN_UNUSED_VARIABLE = YES; 513 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 514 | ONLY_ACTIVE_ARCH = YES; 515 | STRIP_INSTALLED_PRODUCT = NO; 516 | }; 517 | name = Debug; 518 | }; 519 | 0ADB12F09DE62A62ED612023 /* Release */ = { 520 | isa = XCBuildConfiguration; 521 | baseConfigurationReference = B0C096F0CBEE88550F804DB8 /* Pods-Tests-iPerspective-Private.xcconfig */; 522 | buildSettings = { 523 | ALWAYS_SEARCH_USER_PATHS = NO; 524 | COPY_PHASE_STRIP = YES; 525 | DSTROOT = /tmp/xcodeproj.dst; 526 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 527 | GCC_PREFIX_HEADER = "Target Support Files/Pods-Tests-iPerspective/Pods-Tests-iPerspective-prefix.pch"; 528 | INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)"; 529 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 530 | OTHER_CFLAGS = ( 531 | "-DNS_BLOCK_ASSERTIONS=1", 532 | "$(inherited)", 533 | ); 534 | OTHER_CPLUSPLUSFLAGS = ( 535 | "-DNS_BLOCK_ASSERTIONS=1", 536 | "$(inherited)", 537 | ); 538 | OTHER_LDFLAGS = ""; 539 | OTHER_LIBTOOLFLAGS = ""; 540 | PRODUCT_NAME = "$(TARGET_NAME)"; 541 | PUBLIC_HEADERS_FOLDER_PATH = "$(TARGET_NAME)"; 542 | SDKROOT = iphoneos; 543 | SKIP_INSTALL = YES; 544 | VALIDATE_PRODUCT = YES; 545 | }; 546 | name = Release; 547 | }; 548 | 3A2A2539E17D00F61D376723 /* Release */ = { 549 | isa = XCBuildConfiguration; 550 | baseConfigurationReference = 89E3CB23BA537F2219ADC5C0 /* Pods-Tests.release.xcconfig */; 551 | buildSettings = { 552 | ALWAYS_SEARCH_USER_PATHS = NO; 553 | COPY_PHASE_STRIP = YES; 554 | DSTROOT = /tmp/xcodeproj.dst; 555 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 556 | INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)"; 557 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 558 | OTHER_CFLAGS = ( 559 | "-DNS_BLOCK_ASSERTIONS=1", 560 | "$(inherited)", 561 | ); 562 | OTHER_CPLUSPLUSFLAGS = ( 563 | "-DNS_BLOCK_ASSERTIONS=1", 564 | "$(inherited)", 565 | ); 566 | OTHER_LDFLAGS = ""; 567 | OTHER_LIBTOOLFLAGS = ""; 568 | PRODUCT_NAME = "$(TARGET_NAME)"; 569 | PUBLIC_HEADERS_FOLDER_PATH = "$(TARGET_NAME)"; 570 | SDKROOT = iphoneos; 571 | SKIP_INSTALL = YES; 572 | VALIDATE_PRODUCT = YES; 573 | }; 574 | name = Release; 575 | }; 576 | 5D38013BFE88D8868C7BE64E /* Debug */ = { 577 | isa = XCBuildConfiguration; 578 | baseConfigurationReference = B0C096F0CBEE88550F804DB8 /* Pods-Tests-iPerspective-Private.xcconfig */; 579 | buildSettings = { 580 | ALWAYS_SEARCH_USER_PATHS = NO; 581 | COPY_PHASE_STRIP = NO; 582 | DSTROOT = /tmp/xcodeproj.dst; 583 | GCC_DYNAMIC_NO_PIC = NO; 584 | GCC_OPTIMIZATION_LEVEL = 0; 585 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 586 | GCC_PREFIX_HEADER = "Target Support Files/Pods-Tests-iPerspective/Pods-Tests-iPerspective-prefix.pch"; 587 | GCC_PREPROCESSOR_DEFINITIONS = ( 588 | "DEBUG=1", 589 | "$(inherited)", 590 | ); 591 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 592 | INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)"; 593 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 594 | OTHER_LDFLAGS = ""; 595 | OTHER_LIBTOOLFLAGS = ""; 596 | PRODUCT_NAME = "$(TARGET_NAME)"; 597 | PUBLIC_HEADERS_FOLDER_PATH = "$(TARGET_NAME)"; 598 | SDKROOT = iphoneos; 599 | SKIP_INSTALL = YES; 600 | }; 601 | name = Debug; 602 | }; 603 | 727C8061611805798A6AB929 /* Release */ = { 604 | isa = XCBuildConfiguration; 605 | buildSettings = { 606 | ALWAYS_SEARCH_USER_PATHS = NO; 607 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 608 | CLANG_CXX_LIBRARY = "libc++"; 609 | CLANG_ENABLE_MODULES = YES; 610 | CLANG_ENABLE_OBJC_ARC = YES; 611 | CLANG_WARN_BOOL_CONVERSION = YES; 612 | CLANG_WARN_CONSTANT_CONVERSION = YES; 613 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 614 | CLANG_WARN_EMPTY_BODY = YES; 615 | CLANG_WARN_ENUM_CONVERSION = YES; 616 | CLANG_WARN_INT_CONVERSION = YES; 617 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 618 | COPY_PHASE_STRIP = NO; 619 | ENABLE_NS_ASSERTIONS = NO; 620 | GCC_C_LANGUAGE_STANDARD = gnu99; 621 | GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1"; 622 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 623 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 624 | GCC_WARN_UNDECLARED_SELECTOR = YES; 625 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 626 | GCC_WARN_UNUSED_FUNCTION = YES; 627 | GCC_WARN_UNUSED_VARIABLE = YES; 628 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 629 | STRIP_INSTALLED_PRODUCT = NO; 630 | VALIDATE_PRODUCT = YES; 631 | }; 632 | name = Release; 633 | }; 634 | 758490D92D695695EE8B5922 /* Debug */ = { 635 | isa = XCBuildConfiguration; 636 | baseConfigurationReference = C7F6DC1A2FC3FD67C8ADF8C1 /* Pods-iPerspective-iPerspective-Private.xcconfig */; 637 | buildSettings = { 638 | ALWAYS_SEARCH_USER_PATHS = NO; 639 | COPY_PHASE_STRIP = NO; 640 | DSTROOT = /tmp/xcodeproj.dst; 641 | GCC_DYNAMIC_NO_PIC = NO; 642 | GCC_OPTIMIZATION_LEVEL = 0; 643 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 644 | GCC_PREFIX_HEADER = "Target Support Files/Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-prefix.pch"; 645 | GCC_PREPROCESSOR_DEFINITIONS = ( 646 | "DEBUG=1", 647 | "$(inherited)", 648 | ); 649 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 650 | INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)"; 651 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 652 | OTHER_LDFLAGS = ""; 653 | OTHER_LIBTOOLFLAGS = ""; 654 | PRODUCT_NAME = "$(TARGET_NAME)"; 655 | PUBLIC_HEADERS_FOLDER_PATH = "$(TARGET_NAME)"; 656 | SDKROOT = iphoneos; 657 | SKIP_INSTALL = YES; 658 | }; 659 | name = Debug; 660 | }; 661 | 864B72EF9643679B53907A6C /* Debug */ = { 662 | isa = XCBuildConfiguration; 663 | buildSettings = { 664 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 665 | DEVELOPMENT_TEAM = NU5E6U97UG; 666 | INFOPLIST_FILE = "$(SRCROOT)/Target Support Files/Pods-iPerspective/Pods-iPerspective-acknowledgements.plist"; 667 | PRODUCT_NAME = "$(TARGET_NAME)"; 668 | SDKROOT = iphoneos; 669 | SKIP_INSTALL = YES; 670 | WRAPPER_EXTENSION = bundle; 671 | }; 672 | name = Debug; 673 | }; 674 | 8FC439967A5B27FEC940696B /* Release */ = { 675 | isa = XCBuildConfiguration; 676 | buildSettings = { 677 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 678 | DEVELOPMENT_TEAM = NU5E6U97UG; 679 | INFOPLIST_FILE = "$(SRCROOT)/Target Support Files/Pods-iPerspective/Pods-iPerspective-acknowledgements.plist"; 680 | PRODUCT_NAME = "$(TARGET_NAME)"; 681 | SDKROOT = iphoneos; 682 | SKIP_INSTALL = YES; 683 | WRAPPER_EXTENSION = bundle; 684 | }; 685 | name = Release; 686 | }; 687 | CA1935E207F8162771B243CA /* Release */ = { 688 | isa = XCBuildConfiguration; 689 | baseConfigurationReference = C7F6DC1A2FC3FD67C8ADF8C1 /* Pods-iPerspective-iPerspective-Private.xcconfig */; 690 | buildSettings = { 691 | ALWAYS_SEARCH_USER_PATHS = NO; 692 | COPY_PHASE_STRIP = YES; 693 | DSTROOT = /tmp/xcodeproj.dst; 694 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 695 | GCC_PREFIX_HEADER = "Target Support Files/Pods-iPerspective-iPerspective/Pods-iPerspective-iPerspective-prefix.pch"; 696 | INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)"; 697 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 698 | OTHER_CFLAGS = ( 699 | "-DNS_BLOCK_ASSERTIONS=1", 700 | "$(inherited)", 701 | ); 702 | OTHER_CPLUSPLUSFLAGS = ( 703 | "-DNS_BLOCK_ASSERTIONS=1", 704 | "$(inherited)", 705 | ); 706 | OTHER_LDFLAGS = ""; 707 | OTHER_LIBTOOLFLAGS = ""; 708 | PRODUCT_NAME = "$(TARGET_NAME)"; 709 | PUBLIC_HEADERS_FOLDER_PATH = "$(TARGET_NAME)"; 710 | SDKROOT = iphoneos; 711 | SKIP_INSTALL = YES; 712 | VALIDATE_PRODUCT = YES; 713 | }; 714 | name = Release; 715 | }; 716 | D50FBAA0BE0A9A7AAC532195 /* Debug */ = { 717 | isa = XCBuildConfiguration; 718 | baseConfigurationReference = D556C9B7C9FEF2177DD396C4 /* Pods-iPerspective.debug.xcconfig */; 719 | buildSettings = { 720 | ALWAYS_SEARCH_USER_PATHS = NO; 721 | COPY_PHASE_STRIP = NO; 722 | DSTROOT = /tmp/xcodeproj.dst; 723 | GCC_DYNAMIC_NO_PIC = NO; 724 | GCC_OPTIMIZATION_LEVEL = 0; 725 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 726 | GCC_PREPROCESSOR_DEFINITIONS = ( 727 | "DEBUG=1", 728 | "$(inherited)", 729 | ); 730 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 731 | INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)"; 732 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 733 | OTHER_LDFLAGS = ""; 734 | OTHER_LIBTOOLFLAGS = ""; 735 | PRODUCT_NAME = "$(TARGET_NAME)"; 736 | PUBLIC_HEADERS_FOLDER_PATH = "$(TARGET_NAME)"; 737 | SDKROOT = iphoneos; 738 | SKIP_INSTALL = YES; 739 | }; 740 | name = Debug; 741 | }; 742 | DEB69E787269B0C17CD052F6 /* Release */ = { 743 | isa = XCBuildConfiguration; 744 | baseConfigurationReference = 21DACD2308E6A49BD35301BD /* Pods-iPerspective.release.xcconfig */; 745 | buildSettings = { 746 | ALWAYS_SEARCH_USER_PATHS = NO; 747 | COPY_PHASE_STRIP = YES; 748 | DSTROOT = /tmp/xcodeproj.dst; 749 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 750 | INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)"; 751 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 752 | OTHER_CFLAGS = ( 753 | "-DNS_BLOCK_ASSERTIONS=1", 754 | "$(inherited)", 755 | ); 756 | OTHER_CPLUSPLUSFLAGS = ( 757 | "-DNS_BLOCK_ASSERTIONS=1", 758 | "$(inherited)", 759 | ); 760 | OTHER_LDFLAGS = ""; 761 | OTHER_LIBTOOLFLAGS = ""; 762 | PRODUCT_NAME = "$(TARGET_NAME)"; 763 | PUBLIC_HEADERS_FOLDER_PATH = "$(TARGET_NAME)"; 764 | SDKROOT = iphoneos; 765 | SKIP_INSTALL = YES; 766 | VALIDATE_PRODUCT = YES; 767 | }; 768 | name = Release; 769 | }; 770 | ED7E214BB9C47AE2316785BD /* Debug */ = { 771 | isa = XCBuildConfiguration; 772 | baseConfigurationReference = B74E075FED4E180C4BD52C01 /* Pods-Tests.debug.xcconfig */; 773 | buildSettings = { 774 | ALWAYS_SEARCH_USER_PATHS = NO; 775 | COPY_PHASE_STRIP = NO; 776 | DSTROOT = /tmp/xcodeproj.dst; 777 | GCC_DYNAMIC_NO_PIC = NO; 778 | GCC_OPTIMIZATION_LEVEL = 0; 779 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 780 | GCC_PREPROCESSOR_DEFINITIONS = ( 781 | "DEBUG=1", 782 | "$(inherited)", 783 | ); 784 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 785 | INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)"; 786 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 787 | OTHER_LDFLAGS = ""; 788 | OTHER_LIBTOOLFLAGS = ""; 789 | PRODUCT_NAME = "$(TARGET_NAME)"; 790 | PUBLIC_HEADERS_FOLDER_PATH = "$(TARGET_NAME)"; 791 | SDKROOT = iphoneos; 792 | SKIP_INSTALL = YES; 793 | }; 794 | name = Debug; 795 | }; 796 | /* End XCBuildConfiguration section */ 797 | 798 | /* Begin XCConfigurationList section */ 799 | 13A1490BE8A556EE3CB4191F /* Build configuration list for PBXNativeTarget "Pods-Tests-iPerspective" */ = { 800 | isa = XCConfigurationList; 801 | buildConfigurations = ( 802 | 5D38013BFE88D8868C7BE64E /* Debug */, 803 | 0ADB12F09DE62A62ED612023 /* Release */, 804 | ); 805 | defaultConfigurationIsVisible = 0; 806 | defaultConfigurationName = Release; 807 | }; 808 | 5B3B0AC5F931BBCFA1B125EA /* Build configuration list for PBXNativeTarget "Pods-iPerspective-iPerspective" */ = { 809 | isa = XCConfigurationList; 810 | buildConfigurations = ( 811 | 758490D92D695695EE8B5922 /* Debug */, 812 | CA1935E207F8162771B243CA /* Release */, 813 | ); 814 | defaultConfigurationIsVisible = 0; 815 | defaultConfigurationName = Release; 816 | }; 817 | 5C2972CC07DD4528CFBF29D6 /* Build configuration list for PBXProject "Pods" */ = { 818 | isa = XCConfigurationList; 819 | buildConfigurations = ( 820 | 00891260DFE5D2F2A663A51D /* Debug */, 821 | 727C8061611805798A6AB929 /* Release */, 822 | ); 823 | defaultConfigurationIsVisible = 0; 824 | defaultConfigurationName = Release; 825 | }; 826 | 8E0386A0D8A7B93AF6669CDF /* Build configuration list for PBXNativeTarget "Pods-iPerspective" */ = { 827 | isa = XCConfigurationList; 828 | buildConfigurations = ( 829 | D50FBAA0BE0A9A7AAC532195 /* Debug */, 830 | DEB69E787269B0C17CD052F6 /* Release */, 831 | ); 832 | defaultConfigurationIsVisible = 0; 833 | defaultConfigurationName = Release; 834 | }; 835 | 92B23E06EAFAFFC2A7F438B0 /* Build configuration list for PBXNativeTarget "iPerspective" */ = { 836 | isa = XCConfigurationList; 837 | buildConfigurations = ( 838 | 864B72EF9643679B53907A6C /* Debug */, 839 | 8FC439967A5B27FEC940696B /* Release */, 840 | ); 841 | defaultConfigurationIsVisible = 0; 842 | defaultConfigurationName = Release; 843 | }; 844 | A467F95C6751BAFE1A79F52E /* Build configuration list for PBXNativeTarget "Pods-Tests" */ = { 845 | isa = XCConfigurationList; 846 | buildConfigurations = ( 847 | ED7E214BB9C47AE2316785BD /* Debug */, 848 | 3A2A2539E17D00F61D376723 /* Release */, 849 | ); 850 | defaultConfigurationIsVisible = 0; 851 | defaultConfigurationName = Release; 852 | }; 853 | /* End XCConfigurationList section */ 854 | }; 855 | rootObject = 75C4923DC87E12B3FCF85A8E /* Project object */; 856 | } 857 | --------------------------------------------------------------------------------