├── UICollectionViewParallaxCell ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── UICollectionViewParallaxCell.swift ├── Example ├── UICollectionViewParallaxCell │ ├── Images.xcassets │ │ ├── Contents.json │ │ ├── Sanoma_-_MacBook_Pro_Wallpaper.imageset │ │ │ ├── Sanoma_-_MacBook_Pro_Wallpaper.jpg │ │ │ └── Contents.json │ │ ├── The_Surf_-_MacBook_Pro_Wallpaper.imageset │ │ │ ├── The_Surf_-_MacBook_Pro_Wallpaper.jpg │ │ │ └── Contents.json │ │ ├── El_Capitan_-_MacBook_Pro_Wallpaper.imageset │ │ │ ├── El_Capitan_-_MacBook_Pro_Wallpaper.jpg │ │ │ └── Contents.json │ │ ├── Lost_Coast_-_MacBook_Pro_Wallpaper.imageset │ │ │ ├── Lost_Coast_-_MacBook_Pro_Wallpaper.jpg │ │ │ └── Contents.json │ │ ├── Glacier_Falls_-_MacBook_Pro_Wallpaper.imageset │ │ │ ├── Glacier_Falls_-_MacBook_Pro_Wallpaper.jpg │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── ViewCell.swift │ ├── Info.plist │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.xib │ ├── AppDelegate.swift │ └── ViewController.swift ├── Podfile ├── Pods │ ├── Pods.xcodeproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── project.pbxproj │ ├── Target Support Files │ │ ├── UICollectionViewParallaxCell │ │ │ ├── UICollectionViewParallaxCell.modulemap │ │ │ ├── UICollectionViewParallaxCell-dummy.m │ │ │ ├── UICollectionViewParallaxCell-prefix.pch │ │ │ ├── UICollectionViewParallaxCell-umbrella.h │ │ │ ├── UICollectionViewParallaxCell.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-UICollectionViewParallaxCell_Tests │ │ │ ├── Pods-UICollectionViewParallaxCell_Tests-acknowledgements.markdown │ │ │ ├── Pods-UICollectionViewParallaxCell_Tests.modulemap │ │ │ ├── Pods-UICollectionViewParallaxCell_Tests-dummy.m │ │ │ ├── Pods-UICollectionViewParallaxCell_Tests-umbrella.h │ │ │ ├── Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig │ │ │ ├── Pods-UICollectionViewParallaxCell_Tests.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-UICollectionViewParallaxCell_Tests-acknowledgements.plist │ │ │ ├── Pods-UICollectionViewParallaxCell_Tests-resources.sh │ │ │ └── Pods-UICollectionViewParallaxCell_Tests-frameworks.sh │ │ └── Pods-UICollectionViewParallaxCell_Example │ │ │ ├── Pods-UICollectionViewParallaxCell_Example.modulemap │ │ │ ├── Pods-UICollectionViewParallaxCell_Example-dummy.m │ │ │ ├── Pods-UICollectionViewParallaxCell_Example-umbrella.h │ │ │ ├── Pods-UICollectionViewParallaxCell_Example.debug.xcconfig │ │ │ ├── Pods-UICollectionViewParallaxCell_Example.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-UICollectionViewParallaxCell_Example-acknowledgements.markdown │ │ │ ├── Pods-UICollectionViewParallaxCell_Example-acknowledgements.plist │ │ │ ├── Pods-UICollectionViewParallaxCell_Example-resources.sh │ │ │ └── Pods-UICollectionViewParallaxCell_Example-frameworks.sh │ ├── Manifest.lock │ └── Local Podspecs │ │ └── UICollectionViewParallaxCell.podspec.json ├── UICollectionViewParallaxCell.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── UICollectionViewParallaxCell-Example.xcscheme │ └── project.pbxproj ├── UICollectionViewParallaxCell.xcworkspace │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── contents.xcworkspacedata ├── Podfile.lock └── Tests │ ├── Info.plist │ └── Tests.swift ├── _Pods.xcodeproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── project.pbxproj ├── .travis.yml ├── .gitignore ├── LICENSE ├── UICollectionViewParallaxCell.podspec ├── UICollectionViewParallaxCellBACKUP.swift └── README.md /UICollectionViewParallaxCell/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UICollectionViewParallaxCell/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'UICollectionViewParallaxCell_Example' do 4 | use_frameworks! 5 | pod 'UICollectionViewParallaxCell', :path => '../' 6 | 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /_Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/UICollectionViewParallaxCell/UICollectionViewParallaxCell.modulemap: -------------------------------------------------------------------------------- 1 | framework module UICollectionViewParallaxCell { 2 | umbrella header "UICollectionViewParallaxCell-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/UICollectionViewParallaxCell/UICollectionViewParallaxCell-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_UICollectionViewParallaxCell : NSObject 3 | @end 4 | @implementation PodsDummy_UICollectionViewParallaxCell 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_UICollectionViewParallaxCell_Tests { 2 | umbrella header "Pods-UICollectionViewParallaxCell_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_UICollectionViewParallaxCell_Example { 2 | umbrella header "Pods-UICollectionViewParallaxCell_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_UICollectionViewParallaxCell_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_UICollectionViewParallaxCell_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_UICollectionViewParallaxCell_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_UICollectionViewParallaxCell_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/Images.xcassets/Sanoma_-_MacBook_Pro_Wallpaper.imageset/Sanoma_-_MacBook_Pro_Wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModernProgrammer/UICollectionViewParallaxCell/HEAD/Example/UICollectionViewParallaxCell/Images.xcassets/Sanoma_-_MacBook_Pro_Wallpaper.imageset/Sanoma_-_MacBook_Pro_Wallpaper.jpg -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/Images.xcassets/The_Surf_-_MacBook_Pro_Wallpaper.imageset/The_Surf_-_MacBook_Pro_Wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModernProgrammer/UICollectionViewParallaxCell/HEAD/Example/UICollectionViewParallaxCell/Images.xcassets/The_Surf_-_MacBook_Pro_Wallpaper.imageset/The_Surf_-_MacBook_Pro_Wallpaper.jpg -------------------------------------------------------------------------------- /_Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/Images.xcassets/El_Capitan_-_MacBook_Pro_Wallpaper.imageset/El_Capitan_-_MacBook_Pro_Wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModernProgrammer/UICollectionViewParallaxCell/HEAD/Example/UICollectionViewParallaxCell/Images.xcassets/El_Capitan_-_MacBook_Pro_Wallpaper.imageset/El_Capitan_-_MacBook_Pro_Wallpaper.jpg -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/Images.xcassets/Lost_Coast_-_MacBook_Pro_Wallpaper.imageset/Lost_Coast_-_MacBook_Pro_Wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModernProgrammer/UICollectionViewParallaxCell/HEAD/Example/UICollectionViewParallaxCell/Images.xcassets/Lost_Coast_-_MacBook_Pro_Wallpaper.imageset/Lost_Coast_-_MacBook_Pro_Wallpaper.jpg -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/UICollectionViewParallaxCell/UICollectionViewParallaxCell-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/Images.xcassets/Glacier_Falls_-_MacBook_Pro_Wallpaper.imageset/Glacier_Falls_-_MacBook_Pro_Wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModernProgrammer/UICollectionViewParallaxCell/HEAD/Example/UICollectionViewParallaxCell/Images.xcassets/Glacier_Falls_-_MacBook_Pro_Wallpaper.imageset/Glacier_Falls_-_MacBook_Pro_Wallpaper.jpg -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - UICollectionViewParallaxCell (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - UICollectionViewParallaxCell (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | UICollectionViewParallaxCell: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | UICollectionViewParallaxCell: cd95cea27e2f657000fb857e4c948b97378737be 13 | 14 | PODFILE CHECKSUM: 3c06d0f8840a423d69d4ca8ec44f8a59d9728dfa 15 | 16 | COCOAPODS: 1.5.3 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - UICollectionViewParallaxCell (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - UICollectionViewParallaxCell (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | UICollectionViewParallaxCell: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | UICollectionViewParallaxCell: cd95cea27e2f657000fb857e4c948b97378737be 13 | 14 | PODFILE CHECKSUM: 3c06d0f8840a423d69d4ca8ec44f8a59d9728dfa 15 | 16 | COCOAPODS: 1.5.3 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/UICollectionViewParallaxCell/UICollectionViewParallaxCell-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double UICollectionViewParallaxCellVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char UICollectionViewParallaxCellVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/Images.xcassets/Sanoma_-_MacBook_Pro_Wallpaper.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Sanoma_-_MacBook_Pro_Wallpaper.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/Images.xcassets/The_Surf_-_MacBook_Pro_Wallpaper.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "The_Surf_-_MacBook_Pro_Wallpaper.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/Images.xcassets/El_Capitan_-_MacBook_Pro_Wallpaper.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "El_Capitan_-_MacBook_Pro_Wallpaper.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/Images.xcassets/Lost_Coast_-_MacBook_Pro_Wallpaper.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Lost_Coast_-_MacBook_Pro_Wallpaper.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/Images.xcassets/Glacier_Falls_-_MacBook_Pro_Wallpaper.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Glacier_Falls_-_MacBook_Pro_Wallpaper.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 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-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_UICollectionViewParallaxCell_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_UICollectionViewParallaxCell_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_UICollectionViewParallaxCell_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_UICollectionViewParallaxCell_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/UICollectionViewParallaxCell/UICollectionViewParallaxCell.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewParallaxCell 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * https://www.objc.io/issues/6-build-tools/travis-ci/ 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/UICollectionViewParallaxCell.xcworkspace -scheme UICollectionViewParallaxCell-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewParallaxCell" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewParallaxCell/UICollectionViewParallaxCell.framework/Headers" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewParallaxCell" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewParallaxCell/UICollectionViewParallaxCell.framework/Headers" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/UICollectionViewParallaxCell.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UICollectionViewParallaxCell", 3 | "version": "0.1.0", 4 | "summary": "A short description of UICollectionViewParallaxCell.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/Diego Bustamante/UICollectionViewParallaxCell", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "Diego Bustamante": "diegobust4545@icloud.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/Diego Bustamante/UICollectionViewParallaxCell.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "UICollectionViewParallaxCell/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/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 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | import UICollectionViewParallaxCell 3 | 4 | class Tests: XCTestCase { 5 | 6 | override func setUp() { 7 | super.setUp() 8 | // Put setup code here. This method is called before the invocation of each test method in the class. 9 | } 10 | 11 | override func tearDown() { 12 | // Put teardown code here. This method is called after the invocation of each test method in the class. 13 | super.tearDown() 14 | } 15 | 16 | func testExample() { 17 | // This is an example of a functional test case. 18 | XCTAssert(true, "Pass") 19 | } 20 | 21 | func testPerformanceExample() { 22 | // This is an example of a performance test case. 23 | self.measure() { 24 | // Put the code you want to measure the time of here. 25 | } 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 26 | # Carthage/Checkouts 27 | 28 | Carthage/Build 29 | 30 | # We recommend against adding the Pods directory to your .gitignore. However 31 | # you should judge for yourself, the pros and cons are mentioned at: 32 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 33 | # 34 | # Note: if you ignore the Pods directory, make sure to uncomment 35 | # `pod install` in .travis.yml 36 | # 37 | # Pods/ 38 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewParallaxCell" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewParallaxCell/UICollectionViewParallaxCell.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "UICollectionViewParallaxCell" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewParallaxCell" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewParallaxCell/UICollectionViewParallaxCell.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "UICollectionViewParallaxCell" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/UICollectionViewParallaxCell/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 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_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 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/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 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_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 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 Diego Bustamante 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 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/ViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewCell.swift 3 | // UICollectionViewParallaxCell_Example 4 | // 5 | // Created by Diego Bustamante on 2/14/19. 6 | // Copyright © 2019 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import UICollectionViewParallaxCell 11 | 12 | class ViewCell: UICollectionViewParallaxCell { 13 | let label : UILabel = { 14 | let label = UILabel() 15 | label.text = "TEST TEXT" 16 | return label 17 | }() 18 | 19 | override init(frame: CGRect) { 20 | super.init(frame: frame) 21 | backgroundColor = .white 22 | addSubview(label) 23 | label.translatesAutoresizingMaskIntoConstraints = false 24 | label.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -20).isActive = true 25 | label.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 20).isActive = true 26 | label.trailingAnchor.constraint(equalTo: trailingAnchor, constant: 20).isActive = true 27 | } 28 | 29 | required init?(coder aDecoder: NSCoder) { 30 | fatalError("init(coder:) has not been implemented") 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/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" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/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 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## UICollectionViewParallaxCell 5 | 6 | Copyright (c) 2019 Diego Bustamante 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 - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /UICollectionViewParallaxCell.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint UICollectionViewParallaxCell.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'UICollectionViewParallaxCell' 11 | s.version = '0.1.3' 12 | s.summary = 'A parallax effect for a UICollectionViewCell.' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = 'This CocoaPod will easily allow you to add a parallax effect on either a vertical or horizontal scroll on a UICollectionView.' 21 | 22 | s.homepage = 'https://github.com/ModernProgrammer/UICollectionViewParallaxCell' 23 | s.screenshots = 'https://s3.amazonaws.com/diegophotos/github/ParallaxCells.png' 24 | s.license = { :type => 'MIT', :file => 'LICENSE' } 25 | s.author = { 'Diego Bustamante' => 'diegobust4545@icloud.com' } 26 | s.source = { :git => 'https://github.com/ModernProgrammer/UICollectionViewParallaxCell.git'} 27 | 28 | s.ios.deployment_target = '9.0' 29 | s.source_files = 'UICollectionViewParallaxCell/Classes/**/*' 30 | 31 | # s.resource_bundles = { 32 | # 'UICollectionViewParallaxCell' => ['UICollectionViewParallaxCell/Assets/*.png'] 33 | # } 34 | 35 | # s.public_header_files = 'Pod/Classes/**/*.h' 36 | s.frameworks = 'UIKit' 37 | # s.dependency 'AFNetworking', '~> 2.3' 38 | end 39 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/Base.lproj/Main.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 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example-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) 2019 Diego Bustamante <diegobust4545@icloud.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 | License 38 | MIT 39 | Title 40 | UICollectionViewParallaxCell 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // UICollectionViewParallaxCell 4 | // 5 | // Created by Diego Bustamante on 02/14/2019. 6 | // Copyright (c) 2019 Diego Bustamante. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @available(iOS 11.0, *) 12 | @UIApplicationMain 13 | class AppDelegate: UIResponder, UIApplicationDelegate { 14 | 15 | var window: UIWindow? 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | let view = ViewController() 20 | let navView = UINavigationController(rootViewController: view) 21 | window?.rootViewController = navView 22 | return true 23 | } 24 | 25 | func applicationWillResignActive(_ application: UIApplication) { 26 | // 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. 27 | // 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. 28 | } 29 | 30 | func applicationDidEnterBackground(_ application: UIApplication) { 31 | // 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. 32 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 33 | } 34 | 35 | func applicationWillEnterForeground(_ application: UIApplication) { 36 | // 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. 37 | } 38 | 39 | func applicationDidBecomeActive(_ application: UIApplication) { 40 | // 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. 41 | } 42 | 43 | func applicationWillTerminate(_ application: UIApplication) { 44 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 45 | } 46 | 47 | 48 | } 49 | 50 | -------------------------------------------------------------------------------- /UICollectionViewParallaxCell/Classes/UICollectionViewParallaxCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UICollectionViewParallaxCell.swift 3 | // Pods-UICollectionViewParallaxCell_Example 4 | // 5 | // Created by Diego Bustamante on 2/14/19. 6 | // 7 | 8 | import UIKit 9 | 10 | @available(iOS 9.0, *) 11 | open class UICollectionViewParallaxCell : UICollectionViewCell { 12 | public var paddingOffset: CGFloat = 0 13 | public var parallaxImage : UIImageView = { 14 | let image = UIImageView() 15 | return image 16 | }() 17 | public let imageContainer : UIView = { 18 | let view = UIView() 19 | view.backgroundColor = .black 20 | view.clipsToBounds = true 21 | return view 22 | }() 23 | } 24 | 25 | // MARK: Parallax Functions 26 | @available(iOS 9.0, *) 27 | extension UICollectionViewParallaxCell { 28 | public func parallaxOffset(collectionViewBounds bounds: CGRect, scrollDirecton: UICollectionView.ScrollDirection){ 29 | let center = CGPoint(x: bounds.midX, y: bounds.midY) 30 | let offset = CGPoint(x: center.x - self.center.x, y: center.y - self.center.y) 31 | switch scrollDirecton { 32 | case .vertical: 33 | let maxVerticalOffset = (bounds.height/2) + (self.bounds.height/2) 34 | let scaleFactor = paddingOffset / maxVerticalOffset 35 | let parallaxOffset = (-offset.y * scaleFactor) 36 | parallaxImage.transform = CGAffineTransform(translationX: 0, y: parallaxOffset) 37 | case .horizontal: 38 | let maxHorizontalOffset = (bounds.width/2) + (self.bounds.width/2) 39 | let scaleFactor = paddingOffset / maxHorizontalOffset 40 | let parallaxOffset = (-offset.x * scaleFactor) 41 | parallaxImage.transform = CGAffineTransform(translationX: parallaxOffset, y: 0) 42 | default: 43 | print() 44 | } 45 | } 46 | } 47 | 48 | // MARK: UI Function 49 | @available(iOS 9.0, *) 50 | extension UICollectionViewParallaxCell { 51 | public func setupbackgroundParallax(imageView: UIImageView, cornerRadius: CGFloat, paddingOffset: CGFloat, topConstraint: CGFloat, bottomConstraint: CGFloat, leadingConstraint: CGFloat, trailingConstraint: CGFloat) { 52 | parallaxImage = imageView 53 | self.paddingOffset = paddingOffset 54 | 55 | addSubview(imageContainer) 56 | imageContainer.translatesAutoresizingMaskIntoConstraints = false 57 | NSLayoutConstraint.activate([ 58 | imageContainer.topAnchor.constraint(equalTo: topAnchor, constant: topConstraint), 59 | imageContainer.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -bottomConstraint), 60 | imageContainer.leadingAnchor.constraint(equalTo: leadingAnchor, constant: leadingConstraint), 61 | imageContainer.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -trailingConstraint) 62 | ]) 63 | 64 | 65 | imageContainer.layer.cornerRadius = cornerRadius 66 | imageContainer.addSubview(parallaxImage) 67 | parallaxImage.translatesAutoresizingMaskIntoConstraints = false 68 | NSLayoutConstraint.activate([ 69 | parallaxImage.topAnchor.constraint(equalTo: imageContainer.topAnchor, constant: -(paddingOffset + topConstraint)), 70 | parallaxImage.bottomAnchor.constraint(equalTo: imageContainer.bottomAnchor, constant: (paddingOffset + bottomConstraint)), 71 | parallaxImage.leadingAnchor.constraint(equalTo: imageContainer.leadingAnchor, constant: -(paddingOffset + leadingConstraint)), 72 | parallaxImage.trailingAnchor.constraint(equalTo: imageContainer.trailingAnchor, constant: (paddingOffset + trailingConstraint)) 73 | ]) 74 | } 75 | } 76 | 77 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /UICollectionViewParallaxCellBACKUP.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UICollectionViewParallaxCell.swift 3 | // Pods-UICollectionViewParallaxCell_Example 4 | // 5 | // Created by Diego Bustamante on 2/14/19. 6 | // 7 | 8 | import UIKit 9 | 10 | @available(iOS 9.0, *) 11 | open class UICollectionViewParallaxCells : UICollectionViewCell { 12 | public var paddingOffset: CGFloat = 0 13 | public let parallaxImage : UIImageView = { 14 | let image = UIImageView() 15 | image.contentMode = .scaleAspectFill 16 | image.clipsToBounds = false 17 | return image 18 | }() 19 | public let imageContainer : UIView = { 20 | let view = UIView() 21 | view.backgroundColor = .black 22 | view.clipsToBounds = true 23 | return view 24 | }() 25 | } 26 | 27 | // MARK: Parallax Functions 28 | @available(iOS 9.0, *) 29 | extension UICollectionViewParallaxCells { 30 | // Parallax Formula was taken from this great dude 31 | // https://www.youtube.com/watch?v=B3I2Bj_Y6p8 32 | public func parallaxOffset(collectionViewBounds bounds: CGRect, scrollDirecton: UICollectionView.ScrollDirection){ 33 | let center = CGPoint(x: bounds.midX, y: bounds.midY) 34 | let offset = CGPoint(x: center.x - self.center.x, y: center.y - self.center.y) 35 | switch scrollDirecton { 36 | case .vertical: 37 | let maxVerticalOffset = (bounds.height/2) + (self.bounds.height/2) 38 | let scaleFactor = paddingOffset / maxVerticalOffset 39 | let parallaxOffset = (-offset.y * scaleFactor) 40 | parallaxImage.transform = CGAffineTransform(translationX: 0, y: parallaxOffset) 41 | case .horizontal: 42 | let maxHorizontalOffset = (bounds.width/2) + (self.bounds.width/2) 43 | let scaleFactor = paddingOffset / maxHorizontalOffset 44 | let parallaxOffset = (-offset.x * scaleFactor) 45 | parallaxImage.transform = CGAffineTransform(translationX: parallaxOffset, y: 0) 46 | } 47 | } 48 | 49 | } 50 | 51 | // MARK: UI Function 52 | @available(iOS 9.0, *) 53 | @available(iOS 9.0, *) 54 | @available(iOS 9.0, *) 55 | @available(iOS 9.0, *) 56 | @available(iOS 9.0, *) 57 | @available(iOS 9.0, *) 58 | @available(iOS 9.0, *) 59 | @available(iOS 9.0, *) 60 | @available(iOS 9.0, *) 61 | @available(iOS 9.0, *) 62 | @available(iOS 9.0, *) 63 | @available(iOS 9.0, *) 64 | @available(iOS 9.0, *) 65 | @available(iOS 9.0, *) 66 | @available(iOS 9.0, *) 67 | @available(iOS 9.0, *) 68 | extension UICollectionViewParallaxCells { 69 | public func setupbackgroundParallax(image: UIImage, paddingOffset: CGFloat, topConstraint: CGFloat, bottomConstraint: CGFloat, leadingConstraint: CGFloat, trailingConstraint: CGFloat) { 70 | parallaxImage.image = image 71 | 72 | self.paddingOffset = paddingOffset 73 | 74 | addSubview(imageContainer) 75 | imageContainer.translatesAutoresizingMaskIntoConstraints = false 76 | imageContainer.topAnchor.constraint(equalTo: topAnchor, constant: topConstraint).isActive = true 77 | imageContainer.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -bottomConstraint).isActive = true 78 | imageContainer.leadingAnchor.constraint(equalTo: leadingAnchor, constant: leadingConstraint).isActive = true 79 | imageContainer.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -trailingConstraint).isActive = true 80 | imageContainer.addSubview(parallaxImage) 81 | 82 | parallaxImage.translatesAutoresizingMaskIntoConstraints = false 83 | parallaxImage.topAnchor.constraint(equalTo: imageContainer.topAnchor, constant: -(paddingOffset + topConstraint)).isActive = true 84 | parallaxImage.bottomAnchor.constraint(equalTo: imageContainer.bottomAnchor, constant: (paddingOffset + bottomConstraint)).isActive = true 85 | parallaxImage.leadingAnchor.constraint(equalTo: imageContainer.leadingAnchor, constant: -(paddingOffset + leadingConstraint)).isActive = true 86 | parallaxImage.trailingAnchor.constraint(equalTo: imageContainer.trailingAnchor, constant: (paddingOffset + trailingConstraint)).isActive = true 87 | } 88 | } 89 | 90 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UICollectionViewParallaxCell 2 | 3 | [![Version](https://img.shields.io/cocoapods/v/UICollectionViewParallaxCell.svg?style=flat)](https://cocoapods.org/pods/UICollectionViewParallaxCell) 4 | [![License](https://img.shields.io/cocoapods/l/UICollectionViewParallaxCell.svg?style=flat)](https://cocoapods.org/pods/UICollectionViewParallaxCell) 5 | [![Platform](https://img.shields.io/cocoapods/p/UICollectionViewParallaxCell.svg?style=flat)](https://cocoapods.org/pods/UICollectionViewParallaxCell) 6 | 7 | ## Description 8 | 9 | 10 | A simple way of implementing a parallax effect on a UICollectionView. With UICollectionViewParallaxCell, you will be able to easily implement a parallax effect on either a vertical or horizontal scroll. 11 | 12 | 13 | ![ParallaxCellDemo](https://s3.amazonaws.com/diegophotos/github/ParallaxCells.png) 14 | 15 | Here is a video of a vertical scroll [Demo](https://youtu.be/wN3RaSWmP6I) 16 | 17 | ## Functionality 18 | With the UICollectionViewParallaxCell, you have control over the following: 19 | * Parallax effect: 20 | * Vertical Scroll 21 | * Horizontal Scroll 22 | * Constraints 23 | * Top Constraint 24 | * Bottom Constraint 25 | * Left Constraint 26 | * Right Constraint 27 | * ParallaxOffset speed 28 | 29 | 30 | ## Installation 31 | 32 | UICollectionViewParallaxCell is available through [CocoaPods](https://cocoapods.org). To install 33 | it, simply add the following line to your Podfile: 34 | 35 | ```ruby 36 | pod 'UICollectionViewParallaxCell' 37 | ``` 38 | 39 | ## UICollectionViewParallaxCell Example 40 | *Note:This is assuming you have a UICollectionView currently created. 41 | 42 | Once installed, go to your Custom UICollectionViewCell class and import UICollectionViewParallaxCell 43 | ```ruby 44 | import UICollectionViewParallaxCell 45 | ``` 46 | 47 | In your custom UICollectionViewCell class, inherit the UICollectionViewParallaxCell class. 48 | ```ruby 49 | class CustomParallaxCell: UICollectionViewParallaxCell {...} 50 | ``` 51 | 52 | Within that class declare a UIImage 53 | ```ruby 54 | class CustomParallaxCell: UICollectionViewParallaxCell { 55 | var backgroundImage : UIImageView? { 56 | didSet { 57 | guard let imageView = backgroundImage else { return } 58 | imageView.contentMode = .scaleAspectFill 59 | setupbackgroundParallax(imageView: imageView, cornerRadius: 0, paddingOffset: paddingOffset, topConstraint: 0, bottomConstraint: 0, leadingConstraint: 0, trailingConstraint: 0) 60 | } 61 | } 62 | } 63 | } 64 | ``` 65 | 66 | *Note: paddingOffset is a variable declared within the UICollectionViewParallaxCell which by default is a CGFloat of 0. We will update the offset within the collectionView function, cellForItemAt. 67 | 68 | In the class with your UICollectionView, go to your cellForItemAt function. 69 | Within in it declare the following: 70 | ```ruby 71 | func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 72 | let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellId, for: indexPath) as! CustomParallaxCell 73 | cell.paddingOffset = 150 // declares the offset intensity of parallax 74 | cell.backgroundImage = // pass through the UIImageView object to instantiate the setupbackgroundParallax function in the didSet 75 | let bounds = collectionView.bounds // variable for the collectionView bounds 76 | cell.parallaxOffset(collectionViewBounds: bounds, scrollDirecton: .vertical) // instantiate the inital bounds of the collectionview 77 | return cell 78 | } 79 | ``` 80 | 81 | Next call the scrollViewDidScroll function in the class with your UICollectionView. 82 | Declare the following: 83 | ```ruby 84 | func scrollViewDidScroll(_ scrollView: UIScrollView) { 85 | let cells = collectionView.visibleCells as! [CustomParallaxCell] 86 | let bounds = collectionView.bounds 87 | for cell in cells { 88 | cell.parallaxOffset(collectionViewBounds: bounds, scrollDirecton: .vertical) 89 | } 90 | } 91 | ``` 92 | 93 | Run project and enjoy. 94 | 95 | 96 | ## Author 97 | 98 | Diego Bustamante, diegobust4545@icloud.com 99 | 100 | ## License 101 | 102 | UICollectionViewParallaxCell is available under the MIT license. See the LICENSE file for more info. 103 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // UICollectionViewParallaxCell 4 | // 5 | // Created by Diego Bustamante on 02/14/2019. 6 | // Copyright (c) 2019 Diego Bustamante. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | 12 | @available(iOS 11.0, *) 13 | @available(iOS 11.0, *) 14 | class ViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout { 15 | let cellId = "cellId" 16 | let photos = ["El_Capitan_-_MacBook_Pro_Wallpaper","Glacier_Falls_-_MacBook_Pro_Wallpaper","Lost_Coast_-_MacBook_Pro_Wallpaper","Sanoma_-_MacBook_Pro_Wallpaper","The_Surf_-_MacBook_Pro_Wallpaper"] 17 | 18 | // Parallax Cell variables 19 | let paddingOffset : CGFloat = 80 // 20 sutle 20 | let scrollDirection : UICollectionView.ScrollDirection = .vertical 21 | let paging : Bool = false 22 | 23 | lazy var collectionView: UICollectionView = { 24 | let layout = UICollectionViewFlowLayout() 25 | layout.scrollDirection = scrollDirection 26 | let collectionView = UICollectionView(frame: view.frame, collectionViewLayout: layout) 27 | collectionView.dataSource = self 28 | collectionView.delegate = self 29 | collectionView.isPagingEnabled = paging 30 | collectionView.contentInsetAdjustmentBehavior = .always 31 | return collectionView 32 | }() 33 | 34 | override func viewDidLoad() { 35 | super.viewDidLoad() 36 | view.addSubview(collectionView) 37 | collectionView.backgroundColor = UIColor.init(white: 1, alpha: 0.95) 38 | collectionView.register(ViewCell.self, forCellWithReuseIdentifier: cellId) 39 | collectionView.translatesAutoresizingMaskIntoConstraints = false 40 | collectionView.topAnchor.constraint(equalTo: view.topAnchor).isActive = true 41 | collectionView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true 42 | collectionView.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true 43 | collectionView.trailingAnchor.constraint(equalTo: view.trailingAnchor).isActive = true 44 | } 45 | } 46 | 47 | // MARK: Parallax 48 | @available(iOS 11.0, *) 49 | extension ViewController { 50 | func scrollViewDidScroll(_ scrollView: UIScrollView) { 51 | let cells = collectionView.visibleCells as! [ViewCell] 52 | let bounds = collectionView.bounds 53 | for cell in cells { 54 | cell.parallaxOffset(collectionViewBounds: bounds, scrollDirecton: scrollDirection) 55 | } 56 | } 57 | } 58 | 59 | // MARK: UICollectionView Functions 60 | @available(iOS 11.0, *) 61 | extension ViewController { 62 | func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 63 | return photos.count 64 | } 65 | 66 | func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 67 | let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellId, for: indexPath) as! ViewCell 68 | guard let image = UIImage(named: photos[indexPath.item]) else { return cell } 69 | let bounds = collectionView.bounds 70 | 71 | let imageView = UIImageView(image: image) 72 | imageView.clipsToBounds = false 73 | imageView.contentMode = .scaleAspectFill 74 | // setup Parallax Cell 75 | cell.setupbackgroundParallax(imageView: imageView, cornerRadius: 0, paddingOffset: paddingOffset, topConstraint: 40, bottomConstraint: 80, leadingConstraint: 20, trailingConstraint: 20) 76 | cell.parallaxOffset(collectionViewBounds: bounds, scrollDirecton: scrollDirection) 77 | return cell 78 | } 79 | 80 | func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize { 81 | let width = view.frame.width 82 | let height = view.frame.height/3 83 | return CGSize(width: width, height: height) 84 | } 85 | 86 | func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat { 87 | return 10 88 | } 89 | 90 | func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat { 91 | return 10 92 | } 93 | } 94 | 95 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell.xcodeproj/xcshareddata/xcschemes/UICollectionViewParallaxCell-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 80 | 86 | 87 | 88 | 89 | 90 | 91 | 97 | 99 | 105 | 106 | 107 | 108 | 110 | 111 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then 7 | # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # resources to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 13 | 14 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 15 | > "$RESOURCES_TO_COPY" 16 | 17 | XCASSET_FILES=() 18 | 19 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 20 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 21 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 22 | 23 | case "${TARGETED_DEVICE_FAMILY:-}" in 24 | 1,2) 25 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 26 | ;; 27 | 1) 28 | TARGET_DEVICE_ARGS="--target-device iphone" 29 | ;; 30 | 2) 31 | TARGET_DEVICE_ARGS="--target-device ipad" 32 | ;; 33 | 3) 34 | TARGET_DEVICE_ARGS="--target-device tv" 35 | ;; 36 | 4) 37 | TARGET_DEVICE_ARGS="--target-device watch" 38 | ;; 39 | *) 40 | TARGET_DEVICE_ARGS="--target-device mac" 41 | ;; 42 | esac 43 | 44 | install_resource() 45 | { 46 | if [[ "$1" = /* ]] ; then 47 | RESOURCE_PATH="$1" 48 | else 49 | RESOURCE_PATH="${PODS_ROOT}/$1" 50 | fi 51 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 52 | cat << EOM 53 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 54 | EOM 55 | exit 1 56 | fi 57 | case $RESOURCE_PATH in 58 | *.storyboard) 59 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 60 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 61 | ;; 62 | *.xib) 63 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 64 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 65 | ;; 66 | *.framework) 67 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 68 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 69 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 70 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 71 | ;; 72 | *.xcdatamodel) 73 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 74 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 75 | ;; 76 | *.xcdatamodeld) 77 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 78 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 79 | ;; 80 | *.xcmappingmodel) 81 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 82 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 83 | ;; 84 | *.xcassets) 85 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 86 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 87 | ;; 88 | *) 89 | echo "$RESOURCE_PATH" || true 90 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 91 | ;; 92 | esac 93 | } 94 | 95 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 96 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 97 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 98 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 99 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 100 | fi 101 | rm -f "$RESOURCES_TO_COPY" 102 | 103 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] 104 | then 105 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 106 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 107 | while read line; do 108 | if [[ $line != "${PODS_ROOT}*" ]]; then 109 | XCASSET_FILES+=("$line") 110 | fi 111 | done <<<"$OTHER_XCASSETS" 112 | 113 | if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then 114 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 115 | else 116 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" 117 | fi 118 | fi 119 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then 7 | # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # resources to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 13 | 14 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 15 | > "$RESOURCES_TO_COPY" 16 | 17 | XCASSET_FILES=() 18 | 19 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 20 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 21 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 22 | 23 | case "${TARGETED_DEVICE_FAMILY:-}" in 24 | 1,2) 25 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 26 | ;; 27 | 1) 28 | TARGET_DEVICE_ARGS="--target-device iphone" 29 | ;; 30 | 2) 31 | TARGET_DEVICE_ARGS="--target-device ipad" 32 | ;; 33 | 3) 34 | TARGET_DEVICE_ARGS="--target-device tv" 35 | ;; 36 | 4) 37 | TARGET_DEVICE_ARGS="--target-device watch" 38 | ;; 39 | *) 40 | TARGET_DEVICE_ARGS="--target-device mac" 41 | ;; 42 | esac 43 | 44 | install_resource() 45 | { 46 | if [[ "$1" = /* ]] ; then 47 | RESOURCE_PATH="$1" 48 | else 49 | RESOURCE_PATH="${PODS_ROOT}/$1" 50 | fi 51 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 52 | cat << EOM 53 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 54 | EOM 55 | exit 1 56 | fi 57 | case $RESOURCE_PATH in 58 | *.storyboard) 59 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 60 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 61 | ;; 62 | *.xib) 63 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 64 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 65 | ;; 66 | *.framework) 67 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 68 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 69 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 70 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 71 | ;; 72 | *.xcdatamodel) 73 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 74 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 75 | ;; 76 | *.xcdatamodeld) 77 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 78 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 79 | ;; 80 | *.xcmappingmodel) 81 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 82 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 83 | ;; 84 | *.xcassets) 85 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 86 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 87 | ;; 88 | *) 89 | echo "$RESOURCE_PATH" || true 90 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 91 | ;; 92 | esac 93 | } 94 | 95 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 96 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 97 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 98 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 99 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 100 | fi 101 | rm -f "$RESOURCES_TO_COPY" 102 | 103 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] 104 | then 105 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 106 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 107 | while read line; do 108 | if [[ $line != "${PODS_ROOT}*" ]]; then 109 | XCASSET_FILES+=("$line") 110 | fi 111 | done <<<"$OTHER_XCASSETS" 112 | 113 | if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then 114 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 115 | else 116 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" 117 | fi 118 | fi 119 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 7 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # frameworks to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 13 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 14 | 15 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 16 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 17 | 18 | # Used as a return value for each invocation of `strip_invalid_archs` function. 19 | STRIP_BINARY_RETVAL=0 20 | 21 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 22 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 23 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 24 | 25 | # Copies and strips a vendored framework 26 | install_framework() 27 | { 28 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 29 | local source="${BUILT_PRODUCTS_DIR}/$1" 30 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 31 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 32 | elif [ -r "$1" ]; then 33 | local source="$1" 34 | fi 35 | 36 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 37 | 38 | if [ -L "${source}" ]; then 39 | echo "Symlinked..." 40 | source="$(readlink "${source}")" 41 | fi 42 | 43 | # Use filter instead of exclude so missing patterns don't throw errors. 44 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 45 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 46 | 47 | local basename 48 | basename="$(basename -s .framework "$1")" 49 | binary="${destination}/${basename}.framework/${basename}" 50 | if ! [ -r "$binary" ]; then 51 | binary="${destination}/${basename}" 52 | fi 53 | 54 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 55 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 56 | strip_invalid_archs "$binary" 57 | fi 58 | 59 | # Resign the code if required by the build settings to avoid unstable apps 60 | code_sign_if_enabled "${destination}/$(basename "$1")" 61 | 62 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 63 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 64 | local swift_runtime_libs 65 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 66 | for lib in $swift_runtime_libs; do 67 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 68 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 69 | code_sign_if_enabled "${destination}/${lib}" 70 | done 71 | fi 72 | } 73 | 74 | # Copies and strips a vendored dSYM 75 | install_dsym() { 76 | local source="$1" 77 | if [ -r "$source" ]; then 78 | # Copy the dSYM into a the targets temp dir. 79 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 80 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 81 | 82 | local basename 83 | basename="$(basename -s .framework.dSYM "$source")" 84 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 85 | 86 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 87 | if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then 88 | strip_invalid_archs "$binary" 89 | fi 90 | 91 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 92 | # Move the stripped file into its final destination. 93 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 94 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 95 | else 96 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 97 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 98 | fi 99 | fi 100 | } 101 | 102 | # Signs a framework with the provided identity 103 | code_sign_if_enabled() { 104 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 105 | # Use the current code_sign_identitiy 106 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 107 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 108 | 109 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 110 | code_sign_cmd="$code_sign_cmd &" 111 | fi 112 | echo "$code_sign_cmd" 113 | eval "$code_sign_cmd" 114 | fi 115 | } 116 | 117 | # Strip invalid architectures 118 | strip_invalid_archs() { 119 | binary="$1" 120 | # Get architectures for current target binary 121 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 122 | # Intersect them with the architectures we are building for 123 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 124 | # If there are no archs supported by this binary then warn the user 125 | if [[ -z "$intersected_archs" ]]; then 126 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 127 | STRIP_BINARY_RETVAL=0 128 | return 129 | fi 130 | stripped="" 131 | for arch in $binary_archs; do 132 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 133 | # Strip non-valid architectures in-place 134 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 135 | stripped="$stripped $arch" 136 | fi 137 | done 138 | if [[ "$stripped" ]]; then 139 | echo "Stripped $binary of architectures:$stripped" 140 | fi 141 | STRIP_BINARY_RETVAL=1 142 | } 143 | 144 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 145 | wait 146 | fi 147 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 7 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # frameworks to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 13 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 14 | 15 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 16 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 17 | 18 | # Used as a return value for each invocation of `strip_invalid_archs` function. 19 | STRIP_BINARY_RETVAL=0 20 | 21 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 22 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 23 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 24 | 25 | # Copies and strips a vendored framework 26 | install_framework() 27 | { 28 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 29 | local source="${BUILT_PRODUCTS_DIR}/$1" 30 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 31 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 32 | elif [ -r "$1" ]; then 33 | local source="$1" 34 | fi 35 | 36 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 37 | 38 | if [ -L "${source}" ]; then 39 | echo "Symlinked..." 40 | source="$(readlink "${source}")" 41 | fi 42 | 43 | # Use filter instead of exclude so missing patterns don't throw errors. 44 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 45 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 46 | 47 | local basename 48 | basename="$(basename -s .framework "$1")" 49 | binary="${destination}/${basename}.framework/${basename}" 50 | if ! [ -r "$binary" ]; then 51 | binary="${destination}/${basename}" 52 | fi 53 | 54 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 55 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 56 | strip_invalid_archs "$binary" 57 | fi 58 | 59 | # Resign the code if required by the build settings to avoid unstable apps 60 | code_sign_if_enabled "${destination}/$(basename "$1")" 61 | 62 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 63 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 64 | local swift_runtime_libs 65 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 66 | for lib in $swift_runtime_libs; do 67 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 68 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 69 | code_sign_if_enabled "${destination}/${lib}" 70 | done 71 | fi 72 | } 73 | 74 | # Copies and strips a vendored dSYM 75 | install_dsym() { 76 | local source="$1" 77 | if [ -r "$source" ]; then 78 | # Copy the dSYM into a the targets temp dir. 79 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 80 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 81 | 82 | local basename 83 | basename="$(basename -s .framework.dSYM "$source")" 84 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 85 | 86 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 87 | if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then 88 | strip_invalid_archs "$binary" 89 | fi 90 | 91 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 92 | # Move the stripped file into its final destination. 93 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 94 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 95 | else 96 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 97 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 98 | fi 99 | fi 100 | } 101 | 102 | # Signs a framework with the provided identity 103 | code_sign_if_enabled() { 104 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 105 | # Use the current code_sign_identitiy 106 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 107 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 108 | 109 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 110 | code_sign_cmd="$code_sign_cmd &" 111 | fi 112 | echo "$code_sign_cmd" 113 | eval "$code_sign_cmd" 114 | fi 115 | } 116 | 117 | # Strip invalid architectures 118 | strip_invalid_archs() { 119 | binary="$1" 120 | # Get architectures for current target binary 121 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 122 | # Intersect them with the architectures we are building for 123 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 124 | # If there are no archs supported by this binary then warn the user 125 | if [[ -z "$intersected_archs" ]]; then 126 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 127 | STRIP_BINARY_RETVAL=0 128 | return 129 | fi 130 | stripped="" 131 | for arch in $binary_archs; do 132 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 133 | # Strip non-valid architectures in-place 134 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 135 | stripped="$stripped $arch" 136 | fi 137 | done 138 | if [[ "$stripped" ]]; then 139 | echo "Stripped $binary of architectures:$stripped" 140 | fi 141 | STRIP_BINARY_RETVAL=1 142 | } 143 | 144 | 145 | if [[ "$CONFIGURATION" == "Debug" ]]; then 146 | install_framework "${BUILT_PRODUCTS_DIR}/UICollectionViewParallaxCell/UICollectionViewParallaxCell.framework" 147 | fi 148 | if [[ "$CONFIGURATION" == "Release" ]]; then 149 | install_framework "${BUILT_PRODUCTS_DIR}/UICollectionViewParallaxCell/UICollectionViewParallaxCell.framework" 150 | fi 151 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 152 | wait 153 | fi 154 | -------------------------------------------------------------------------------- /Example/UICollectionViewParallaxCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 33E9879F7025E5C3E3F55442 /* Pods_UICollectionViewParallaxCell_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 30F0A4784E7E3CD5D8B15549 /* Pods_UICollectionViewParallaxCell_Example.framework */; }; 11 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 12 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 13 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 14 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 15 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 16 | B20C6D2022161C3500EE7219 /* ViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = B20C6D1F22161C3500EE7219 /* ViewCell.swift */; }; 17 | B5D48A129A0BDF660D907CE5 /* Pods_UICollectionViewParallaxCell_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A0DD446344029A2964FF0F05 /* Pods_UICollectionViewParallaxCell_Tests.framework */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 26 | remoteInfo = UICollectionViewParallaxCell; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 16E8CD6C27D3FB38C31CEDD9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 32 | 1F94B5BF2CAC4FE31E4566C4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 33 | 2EBC5BDB9B45846590FAED9E /* Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig"; sourceTree = ""; }; 34 | 30F0A4784E7E3CD5D8B15549 /* Pods_UICollectionViewParallaxCell_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_UICollectionViewParallaxCell_Example.framework; path = "../../../../../Library/Developer/Xcode/DerivedData/UICollectionViewParallaxCell-cnwgfeksunhsraeybkeomktyhhkd/Build/Products/Debug-iphoneos/Pods_UICollectionViewParallaxCell_Example.framework"; sourceTree = ""; }; 35 | 3E5FCAB272678F8561464B8A /* Pods-UICollectionViewParallaxCell_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UICollectionViewParallaxCell_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example.release.xcconfig"; sourceTree = ""; }; 36 | 563C64C0F600A205AED3607A /* Pods-UICollectionViewParallaxCell_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UICollectionViewParallaxCell_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests.release.xcconfig"; sourceTree = ""; }; 37 | 607FACD01AFB9204008FA782 /* UICollectionViewParallaxCell_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = UICollectionViewParallaxCell_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 38 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 39 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 40 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 41 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 42 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 43 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 44 | 607FACE51AFB9204008FA782 /* UICollectionViewParallaxCell_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = UICollectionViewParallaxCell_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 46 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 47 | 9BC54EDEF5B2C9E409C570E7 /* Pods-UICollectionViewParallaxCell_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UICollectionViewParallaxCell_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example.debug.xcconfig"; sourceTree = ""; }; 48 | A0DD446344029A2964FF0F05 /* Pods_UICollectionViewParallaxCell_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_UICollectionViewParallaxCell_Tests.framework; path = "../../../../../Library/Developer/Xcode/DerivedData/UICollectionViewParallaxCell-cnwgfeksunhsraeybkeomktyhhkd/Build/Products/Debug-iphoneos/Pods_UICollectionViewParallaxCell_Tests.framework"; sourceTree = ""; }; 49 | B20C6D1F22161C3500EE7219 /* ViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewCell.swift; sourceTree = ""; }; 50 | BAD4BC5A1C302DB721DB2F6D /* UICollectionViewParallaxCell.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = UICollectionViewParallaxCell.podspec; path = ../UICollectionViewParallaxCell.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 51 | /* End PBXFileReference section */ 52 | 53 | /* Begin PBXFrameworksBuildPhase section */ 54 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 55 | isa = PBXFrameworksBuildPhase; 56 | buildActionMask = 2147483647; 57 | files = ( 58 | 33E9879F7025E5C3E3F55442 /* Pods_UICollectionViewParallaxCell_Example.framework in Frameworks */, 59 | ); 60 | runOnlyForDeploymentPostprocessing = 0; 61 | }; 62 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 63 | isa = PBXFrameworksBuildPhase; 64 | buildActionMask = 2147483647; 65 | files = ( 66 | B5D48A129A0BDF660D907CE5 /* Pods_UICollectionViewParallaxCell_Tests.framework in Frameworks */, 67 | ); 68 | runOnlyForDeploymentPostprocessing = 0; 69 | }; 70 | /* End PBXFrameworksBuildPhase section */ 71 | 72 | /* Begin PBXGroup section */ 73 | 5A9833990B6EA05551A99D5F /* Pods */ = { 74 | isa = PBXGroup; 75 | children = ( 76 | 9BC54EDEF5B2C9E409C570E7 /* Pods-UICollectionViewParallaxCell_Example.debug.xcconfig */, 77 | 3E5FCAB272678F8561464B8A /* Pods-UICollectionViewParallaxCell_Example.release.xcconfig */, 78 | 2EBC5BDB9B45846590FAED9E /* Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig */, 79 | 563C64C0F600A205AED3607A /* Pods-UICollectionViewParallaxCell_Tests.release.xcconfig */, 80 | ); 81 | name = Pods; 82 | sourceTree = ""; 83 | }; 84 | 607FACC71AFB9204008FA782 = { 85 | isa = PBXGroup; 86 | children = ( 87 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 88 | 607FACD21AFB9204008FA782 /* Example for UICollectionViewParallaxCell */, 89 | 607FACE81AFB9204008FA782 /* Tests */, 90 | 607FACD11AFB9204008FA782 /* Products */, 91 | 5A9833990B6EA05551A99D5F /* Pods */, 92 | CC705D1EB16BC58FA4790D8F /* Frameworks */, 93 | ); 94 | sourceTree = ""; 95 | }; 96 | 607FACD11AFB9204008FA782 /* Products */ = { 97 | isa = PBXGroup; 98 | children = ( 99 | 607FACD01AFB9204008FA782 /* UICollectionViewParallaxCell_Example.app */, 100 | 607FACE51AFB9204008FA782 /* UICollectionViewParallaxCell_Tests.xctest */, 101 | ); 102 | name = Products; 103 | sourceTree = ""; 104 | }; 105 | 607FACD21AFB9204008FA782 /* Example for UICollectionViewParallaxCell */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 109 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 110 | B20C6D1F22161C3500EE7219 /* ViewCell.swift */, 111 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 112 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 113 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 114 | 607FACD31AFB9204008FA782 /* Supporting Files */, 115 | ); 116 | name = "Example for UICollectionViewParallaxCell"; 117 | path = UICollectionViewParallaxCell; 118 | sourceTree = ""; 119 | }; 120 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 121 | isa = PBXGroup; 122 | children = ( 123 | 607FACD41AFB9204008FA782 /* Info.plist */, 124 | ); 125 | name = "Supporting Files"; 126 | sourceTree = ""; 127 | }; 128 | 607FACE81AFB9204008FA782 /* Tests */ = { 129 | isa = PBXGroup; 130 | children = ( 131 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 132 | 607FACE91AFB9204008FA782 /* Supporting Files */, 133 | ); 134 | path = Tests; 135 | sourceTree = ""; 136 | }; 137 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 138 | isa = PBXGroup; 139 | children = ( 140 | 607FACEA1AFB9204008FA782 /* Info.plist */, 141 | ); 142 | name = "Supporting Files"; 143 | sourceTree = ""; 144 | }; 145 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 146 | isa = PBXGroup; 147 | children = ( 148 | BAD4BC5A1C302DB721DB2F6D /* UICollectionViewParallaxCell.podspec */, 149 | 1F94B5BF2CAC4FE31E4566C4 /* README.md */, 150 | 16E8CD6C27D3FB38C31CEDD9 /* LICENSE */, 151 | ); 152 | name = "Podspec Metadata"; 153 | sourceTree = ""; 154 | }; 155 | CC705D1EB16BC58FA4790D8F /* Frameworks */ = { 156 | isa = PBXGroup; 157 | children = ( 158 | 30F0A4784E7E3CD5D8B15549 /* Pods_UICollectionViewParallaxCell_Example.framework */, 159 | A0DD446344029A2964FF0F05 /* Pods_UICollectionViewParallaxCell_Tests.framework */, 160 | ); 161 | name = Frameworks; 162 | sourceTree = ""; 163 | }; 164 | /* End PBXGroup section */ 165 | 166 | /* Begin PBXNativeTarget section */ 167 | 607FACCF1AFB9204008FA782 /* UICollectionViewParallaxCell_Example */ = { 168 | isa = PBXNativeTarget; 169 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "UICollectionViewParallaxCell_Example" */; 170 | buildPhases = ( 171 | 138067559AF01DD36D655F49 /* [CP] Check Pods Manifest.lock */, 172 | 607FACCC1AFB9204008FA782 /* Sources */, 173 | 607FACCD1AFB9204008FA782 /* Frameworks */, 174 | 607FACCE1AFB9204008FA782 /* Resources */, 175 | 22229191159D7C834FEF1C39 /* [CP] Embed Pods Frameworks */, 176 | ); 177 | buildRules = ( 178 | ); 179 | dependencies = ( 180 | ); 181 | name = UICollectionViewParallaxCell_Example; 182 | productName = UICollectionViewParallaxCell; 183 | productReference = 607FACD01AFB9204008FA782 /* UICollectionViewParallaxCell_Example.app */; 184 | productType = "com.apple.product-type.application"; 185 | }; 186 | 607FACE41AFB9204008FA782 /* UICollectionViewParallaxCell_Tests */ = { 187 | isa = PBXNativeTarget; 188 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "UICollectionViewParallaxCell_Tests" */; 189 | buildPhases = ( 190 | AA89CE706F4324C2BD041195 /* [CP] Check Pods Manifest.lock */, 191 | 607FACE11AFB9204008FA782 /* Sources */, 192 | 607FACE21AFB9204008FA782 /* Frameworks */, 193 | 607FACE31AFB9204008FA782 /* Resources */, 194 | ); 195 | buildRules = ( 196 | ); 197 | dependencies = ( 198 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 199 | ); 200 | name = UICollectionViewParallaxCell_Tests; 201 | productName = Tests; 202 | productReference = 607FACE51AFB9204008FA782 /* UICollectionViewParallaxCell_Tests.xctest */; 203 | productType = "com.apple.product-type.bundle.unit-test"; 204 | }; 205 | /* End PBXNativeTarget section */ 206 | 207 | /* Begin PBXProject section */ 208 | 607FACC81AFB9204008FA782 /* Project object */ = { 209 | isa = PBXProject; 210 | attributes = { 211 | LastSwiftUpdateCheck = 0830; 212 | LastUpgradeCheck = 1010; 213 | ORGANIZATIONNAME = CocoaPods; 214 | TargetAttributes = { 215 | 607FACCF1AFB9204008FA782 = { 216 | CreatedOnToolsVersion = 6.3.1; 217 | DevelopmentTeam = XREP97TJKH; 218 | LastSwiftMigration = 1010; 219 | }; 220 | 607FACE41AFB9204008FA782 = { 221 | CreatedOnToolsVersion = 6.3.1; 222 | LastSwiftMigration = 1010; 223 | TestTargetID = 607FACCF1AFB9204008FA782; 224 | }; 225 | }; 226 | }; 227 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "UICollectionViewParallaxCell" */; 228 | compatibilityVersion = "Xcode 3.2"; 229 | developmentRegion = English; 230 | hasScannedForEncodings = 0; 231 | knownRegions = ( 232 | en, 233 | Base, 234 | ); 235 | mainGroup = 607FACC71AFB9204008FA782; 236 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 237 | projectDirPath = ""; 238 | projectRoot = ""; 239 | targets = ( 240 | 607FACCF1AFB9204008FA782 /* UICollectionViewParallaxCell_Example */, 241 | 607FACE41AFB9204008FA782 /* UICollectionViewParallaxCell_Tests */, 242 | ); 243 | }; 244 | /* End PBXProject section */ 245 | 246 | /* Begin PBXResourcesBuildPhase section */ 247 | 607FACCE1AFB9204008FA782 /* Resources */ = { 248 | isa = PBXResourcesBuildPhase; 249 | buildActionMask = 2147483647; 250 | files = ( 251 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 252 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 253 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 254 | ); 255 | runOnlyForDeploymentPostprocessing = 0; 256 | }; 257 | 607FACE31AFB9204008FA782 /* Resources */ = { 258 | isa = PBXResourcesBuildPhase; 259 | buildActionMask = 2147483647; 260 | files = ( 261 | ); 262 | runOnlyForDeploymentPostprocessing = 0; 263 | }; 264 | /* End PBXResourcesBuildPhase section */ 265 | 266 | /* Begin PBXShellScriptBuildPhase section */ 267 | 138067559AF01DD36D655F49 /* [CP] Check Pods Manifest.lock */ = { 268 | isa = PBXShellScriptBuildPhase; 269 | buildActionMask = 2147483647; 270 | files = ( 271 | ); 272 | inputPaths = ( 273 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 274 | "${PODS_ROOT}/Manifest.lock", 275 | ); 276 | name = "[CP] Check Pods Manifest.lock"; 277 | outputPaths = ( 278 | "$(DERIVED_FILE_DIR)/Pods-UICollectionViewParallaxCell_Example-checkManifestLockResult.txt", 279 | ); 280 | runOnlyForDeploymentPostprocessing = 0; 281 | shellPath = /bin/sh; 282 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 283 | showEnvVarsInLog = 0; 284 | }; 285 | 22229191159D7C834FEF1C39 /* [CP] Embed Pods Frameworks */ = { 286 | isa = PBXShellScriptBuildPhase; 287 | buildActionMask = 2147483647; 288 | files = ( 289 | ); 290 | inputPaths = ( 291 | "${SRCROOT}/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example-frameworks.sh", 292 | "${BUILT_PRODUCTS_DIR}/UICollectionViewParallaxCell/UICollectionViewParallaxCell.framework", 293 | ); 294 | name = "[CP] Embed Pods Frameworks"; 295 | outputPaths = ( 296 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/UICollectionViewParallaxCell.framework", 297 | ); 298 | runOnlyForDeploymentPostprocessing = 0; 299 | shellPath = /bin/sh; 300 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example-frameworks.sh\"\n"; 301 | showEnvVarsInLog = 0; 302 | }; 303 | AA89CE706F4324C2BD041195 /* [CP] Check Pods Manifest.lock */ = { 304 | isa = PBXShellScriptBuildPhase; 305 | buildActionMask = 2147483647; 306 | files = ( 307 | ); 308 | inputPaths = ( 309 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 310 | "${PODS_ROOT}/Manifest.lock", 311 | ); 312 | name = "[CP] Check Pods Manifest.lock"; 313 | outputPaths = ( 314 | "$(DERIVED_FILE_DIR)/Pods-UICollectionViewParallaxCell_Tests-checkManifestLockResult.txt", 315 | ); 316 | runOnlyForDeploymentPostprocessing = 0; 317 | shellPath = /bin/sh; 318 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 319 | showEnvVarsInLog = 0; 320 | }; 321 | /* End PBXShellScriptBuildPhase section */ 322 | 323 | /* Begin PBXSourcesBuildPhase section */ 324 | 607FACCC1AFB9204008FA782 /* Sources */ = { 325 | isa = PBXSourcesBuildPhase; 326 | buildActionMask = 2147483647; 327 | files = ( 328 | B20C6D2022161C3500EE7219 /* ViewCell.swift in Sources */, 329 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 330 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 331 | ); 332 | runOnlyForDeploymentPostprocessing = 0; 333 | }; 334 | 607FACE11AFB9204008FA782 /* Sources */ = { 335 | isa = PBXSourcesBuildPhase; 336 | buildActionMask = 2147483647; 337 | files = ( 338 | ); 339 | runOnlyForDeploymentPostprocessing = 0; 340 | }; 341 | /* End PBXSourcesBuildPhase section */ 342 | 343 | /* Begin PBXTargetDependency section */ 344 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 345 | isa = PBXTargetDependency; 346 | target = 607FACCF1AFB9204008FA782 /* UICollectionViewParallaxCell_Example */; 347 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 348 | }; 349 | /* End PBXTargetDependency section */ 350 | 351 | /* Begin PBXVariantGroup section */ 352 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 353 | isa = PBXVariantGroup; 354 | children = ( 355 | 607FACDA1AFB9204008FA782 /* Base */, 356 | ); 357 | name = Main.storyboard; 358 | sourceTree = ""; 359 | }; 360 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 361 | isa = PBXVariantGroup; 362 | children = ( 363 | 607FACDF1AFB9204008FA782 /* Base */, 364 | ); 365 | name = LaunchScreen.xib; 366 | sourceTree = ""; 367 | }; 368 | /* End PBXVariantGroup section */ 369 | 370 | /* Begin XCBuildConfiguration section */ 371 | 607FACED1AFB9204008FA782 /* Debug */ = { 372 | isa = XCBuildConfiguration; 373 | buildSettings = { 374 | ALWAYS_SEARCH_USER_PATHS = NO; 375 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 376 | CLANG_CXX_LIBRARY = "libc++"; 377 | CLANG_ENABLE_MODULES = YES; 378 | CLANG_ENABLE_OBJC_ARC = YES; 379 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 380 | CLANG_WARN_BOOL_CONVERSION = YES; 381 | CLANG_WARN_COMMA = YES; 382 | CLANG_WARN_CONSTANT_CONVERSION = YES; 383 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 384 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 385 | CLANG_WARN_EMPTY_BODY = YES; 386 | CLANG_WARN_ENUM_CONVERSION = YES; 387 | CLANG_WARN_INFINITE_RECURSION = YES; 388 | CLANG_WARN_INT_CONVERSION = YES; 389 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 390 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 391 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 392 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 393 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 394 | CLANG_WARN_STRICT_PROTOTYPES = YES; 395 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 396 | CLANG_WARN_UNREACHABLE_CODE = YES; 397 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 398 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 399 | COPY_PHASE_STRIP = NO; 400 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 401 | ENABLE_STRICT_OBJC_MSGSEND = YES; 402 | ENABLE_TESTABILITY = YES; 403 | GCC_C_LANGUAGE_STANDARD = gnu99; 404 | GCC_DYNAMIC_NO_PIC = NO; 405 | GCC_NO_COMMON_BLOCKS = YES; 406 | GCC_OPTIMIZATION_LEVEL = 0; 407 | GCC_PREPROCESSOR_DEFINITIONS = ( 408 | "DEBUG=1", 409 | "$(inherited)", 410 | ); 411 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 412 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 413 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 414 | GCC_WARN_UNDECLARED_SELECTOR = YES; 415 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 416 | GCC_WARN_UNUSED_FUNCTION = YES; 417 | GCC_WARN_UNUSED_VARIABLE = YES; 418 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 419 | MTL_ENABLE_DEBUG_INFO = YES; 420 | ONLY_ACTIVE_ARCH = YES; 421 | SDKROOT = iphoneos; 422 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 423 | }; 424 | name = Debug; 425 | }; 426 | 607FACEE1AFB9204008FA782 /* Release */ = { 427 | isa = XCBuildConfiguration; 428 | buildSettings = { 429 | ALWAYS_SEARCH_USER_PATHS = NO; 430 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 431 | CLANG_CXX_LIBRARY = "libc++"; 432 | CLANG_ENABLE_MODULES = YES; 433 | CLANG_ENABLE_OBJC_ARC = YES; 434 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 435 | CLANG_WARN_BOOL_CONVERSION = YES; 436 | CLANG_WARN_COMMA = YES; 437 | CLANG_WARN_CONSTANT_CONVERSION = YES; 438 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 439 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 440 | CLANG_WARN_EMPTY_BODY = YES; 441 | CLANG_WARN_ENUM_CONVERSION = YES; 442 | CLANG_WARN_INFINITE_RECURSION = YES; 443 | CLANG_WARN_INT_CONVERSION = YES; 444 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 445 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 446 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 447 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 448 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 449 | CLANG_WARN_STRICT_PROTOTYPES = YES; 450 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 451 | CLANG_WARN_UNREACHABLE_CODE = YES; 452 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 453 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 454 | COPY_PHASE_STRIP = NO; 455 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 456 | ENABLE_NS_ASSERTIONS = NO; 457 | ENABLE_STRICT_OBJC_MSGSEND = YES; 458 | GCC_C_LANGUAGE_STANDARD = gnu99; 459 | GCC_NO_COMMON_BLOCKS = YES; 460 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 461 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 462 | GCC_WARN_UNDECLARED_SELECTOR = YES; 463 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 464 | GCC_WARN_UNUSED_FUNCTION = YES; 465 | GCC_WARN_UNUSED_VARIABLE = YES; 466 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 467 | MTL_ENABLE_DEBUG_INFO = NO; 468 | SDKROOT = iphoneos; 469 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 470 | VALIDATE_PRODUCT = YES; 471 | }; 472 | name = Release; 473 | }; 474 | 607FACF01AFB9204008FA782 /* Debug */ = { 475 | isa = XCBuildConfiguration; 476 | baseConfigurationReference = 9BC54EDEF5B2C9E409C570E7 /* Pods-UICollectionViewParallaxCell_Example.debug.xcconfig */; 477 | buildSettings = { 478 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 479 | DEVELOPMENT_TEAM = XREP97TJKH; 480 | INFOPLIST_FILE = UICollectionViewParallaxCell/Info.plist; 481 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 482 | MODULE_NAME = ExampleApp; 483 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 484 | PRODUCT_NAME = "$(TARGET_NAME)"; 485 | SWIFT_VERSION = 4.2; 486 | }; 487 | name = Debug; 488 | }; 489 | 607FACF11AFB9204008FA782 /* Release */ = { 490 | isa = XCBuildConfiguration; 491 | baseConfigurationReference = 3E5FCAB272678F8561464B8A /* Pods-UICollectionViewParallaxCell_Example.release.xcconfig */; 492 | buildSettings = { 493 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 494 | DEVELOPMENT_TEAM = XREP97TJKH; 495 | INFOPLIST_FILE = UICollectionViewParallaxCell/Info.plist; 496 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 497 | MODULE_NAME = ExampleApp; 498 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 499 | PRODUCT_NAME = "$(TARGET_NAME)"; 500 | SWIFT_VERSION = 4.2; 501 | }; 502 | name = Release; 503 | }; 504 | 607FACF31AFB9204008FA782 /* Debug */ = { 505 | isa = XCBuildConfiguration; 506 | baseConfigurationReference = 2EBC5BDB9B45846590FAED9E /* Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig */; 507 | buildSettings = { 508 | FRAMEWORK_SEARCH_PATHS = ( 509 | "$(SDKROOT)/Developer/Library/Frameworks", 510 | "$(inherited)", 511 | ); 512 | GCC_PREPROCESSOR_DEFINITIONS = ( 513 | "DEBUG=1", 514 | "$(inherited)", 515 | ); 516 | INFOPLIST_FILE = Tests/Info.plist; 517 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 518 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 519 | PRODUCT_NAME = "$(TARGET_NAME)"; 520 | SWIFT_VERSION = 4.2; 521 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/UICollectionViewParallaxCell_Example.app/UICollectionViewParallaxCell_Example"; 522 | }; 523 | name = Debug; 524 | }; 525 | 607FACF41AFB9204008FA782 /* Release */ = { 526 | isa = XCBuildConfiguration; 527 | baseConfigurationReference = 563C64C0F600A205AED3607A /* Pods-UICollectionViewParallaxCell_Tests.release.xcconfig */; 528 | buildSettings = { 529 | FRAMEWORK_SEARCH_PATHS = ( 530 | "$(SDKROOT)/Developer/Library/Frameworks", 531 | "$(inherited)", 532 | ); 533 | INFOPLIST_FILE = Tests/Info.plist; 534 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 535 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 536 | PRODUCT_NAME = "$(TARGET_NAME)"; 537 | SWIFT_VERSION = 4.2; 538 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/UICollectionViewParallaxCell_Example.app/UICollectionViewParallaxCell_Example"; 539 | }; 540 | name = Release; 541 | }; 542 | /* End XCBuildConfiguration section */ 543 | 544 | /* Begin XCConfigurationList section */ 545 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "UICollectionViewParallaxCell" */ = { 546 | isa = XCConfigurationList; 547 | buildConfigurations = ( 548 | 607FACED1AFB9204008FA782 /* Debug */, 549 | 607FACEE1AFB9204008FA782 /* Release */, 550 | ); 551 | defaultConfigurationIsVisible = 0; 552 | defaultConfigurationName = Release; 553 | }; 554 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "UICollectionViewParallaxCell_Example" */ = { 555 | isa = XCConfigurationList; 556 | buildConfigurations = ( 557 | 607FACF01AFB9204008FA782 /* Debug */, 558 | 607FACF11AFB9204008FA782 /* Release */, 559 | ); 560 | defaultConfigurationIsVisible = 0; 561 | defaultConfigurationName = Release; 562 | }; 563 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "UICollectionViewParallaxCell_Tests" */ = { 564 | isa = XCConfigurationList; 565 | buildConfigurations = ( 566 | 607FACF31AFB9204008FA782 /* Debug */, 567 | 607FACF41AFB9204008FA782 /* Release */, 568 | ); 569 | defaultConfigurationIsVisible = 0; 570 | defaultConfigurationName = Release; 571 | }; 572 | /* End XCConfigurationList section */ 573 | }; 574 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 575 | } 576 | -------------------------------------------------------------------------------- /_Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 082AB04238C5F5A7A343B4E8AFE7FD6D /* Pods-UICollectionViewParallaxCell_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27E7C4839BFAA66DCFB1EDE1FB3CA309 /* Pods-UICollectionViewParallaxCell_Example-dummy.m */; }; 11 | 3E5AF2AEB54EDF9744E79C6ACEC5FFB8 /* UICollectionViewParallaxCell-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3897F122A148798C8205BEE804AC922C /* UICollectionViewParallaxCell-dummy.m */; }; 12 | 74724694486E1B8D8904F047A3A821A9 /* UICollectionViewParallaxCell-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C57E7CEEB0657DC93C1BD211666E4A7 /* UICollectionViewParallaxCell-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 92020205B567CC5AC0D16D2AE95EF591 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */; }; 14 | 93930F30DD26A573813D2F96D21075AA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */; }; 15 | 9F65E1D7C8BFEF912B4459E729A68497 /* Pods-UICollectionViewParallaxCell_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 340ADF6738BB6D403885C13C7CE7D468 /* Pods-UICollectionViewParallaxCell_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | B20C6D22221620EF00EE7219 /* UICollectionViewParallaxCellBACKUP.swift in Sources */ = {isa = PBXBuildFile; fileRef = B262261E221616D10017B2FF /* UICollectionViewParallaxCellBACKUP.swift */; }; 17 | B262261F221616D10017B2FF /* UICollectionViewParallaxCellBACKUP.swift in Sources */ = {isa = PBXBuildFile; fileRef = B262261E221616D10017B2FF /* UICollectionViewParallaxCellBACKUP.swift */; }; 18 | C1BC5AC34F6E760C2A48B815972CB628 /* UICollectionViewParallaxCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A16E9D34717F5AC57A1848A83D3FF524 /* UICollectionViewParallaxCell.swift */; }; 19 | C527B2321EA69099B0EBAACEC5D430AE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */; }; 20 | D2CAB762EB244572631868B5B54CC328 /* Pods-UICollectionViewParallaxCell_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1785C0EB4A99154042D3C0F4869BCDFC /* Pods-UICollectionViewParallaxCell_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 21 | DF4A2AC141C34DB58439EF0CCB9236C0 /* Pods-UICollectionViewParallaxCell_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 901A917B88B3AE23789B39A52ED4A900 /* Pods-UICollectionViewParallaxCell_Tests-dummy.m */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXContainerItemProxy section */ 25 | 5AFE8CEDF692E461721E4BFCE04079B5 /* PBXContainerItemProxy */ = { 26 | isa = PBXContainerItemProxy; 27 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 28 | proxyType = 1; 29 | remoteGlobalIDString = 611E167ABE89536F765472B75E5D77A9; 30 | remoteInfo = "Pods-UICollectionViewParallaxCell_Example"; 31 | }; 32 | DF8D492C6D924D85E5FEB28C911B19DF /* PBXContainerItemProxy */ = { 33 | isa = PBXContainerItemProxy; 34 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 35 | proxyType = 1; 36 | remoteGlobalIDString = 30945AD0F530E5E7C9AB38980BA1DE56; 37 | remoteInfo = UICollectionViewParallaxCell; 38 | }; 39 | /* End PBXContainerItemProxy section */ 40 | 41 | /* Begin PBXFileReference section */ 42 | 1785C0EB4A99154042D3C0F4869BCDFC /* Pods-UICollectionViewParallaxCell_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-UICollectionViewParallaxCell_Example-umbrella.h"; sourceTree = ""; }; 43 | 1EB4CD771FAAD1B4451755B90AEA0145 /* UICollectionViewParallaxCell-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UICollectionViewParallaxCell-prefix.pch"; sourceTree = ""; }; 44 | 1FB007D950AE85ED565513E24F498B31 /* UICollectionViewParallaxCell.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UICollectionViewParallaxCell.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 27E7C4839BFAA66DCFB1EDE1FB3CA309 /* Pods-UICollectionViewParallaxCell_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-UICollectionViewParallaxCell_Example-dummy.m"; sourceTree = ""; }; 46 | 2B0F199CA3616EC9FD36DDC39991BAEC /* Pods-UICollectionViewParallaxCell_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-UICollectionViewParallaxCell_Tests-acknowledgements.plist"; sourceTree = ""; }; 47 | 2B76E1B4BBAE5841D9D0D7CD44D21874 /* Pods-UICollectionViewParallaxCell_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UICollectionViewParallaxCell_Tests.release.xcconfig"; sourceTree = ""; }; 48 | 2FBD5C4BA6CAE0D8C19027F1188B97E9 /* Pods-UICollectionViewParallaxCell_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UICollectionViewParallaxCell_Example.debug.xcconfig"; sourceTree = ""; }; 49 | 340ADF6738BB6D403885C13C7CE7D468 /* Pods-UICollectionViewParallaxCell_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-UICollectionViewParallaxCell_Tests-umbrella.h"; sourceTree = ""; }; 50 | 3897F122A148798C8205BEE804AC922C /* UICollectionViewParallaxCell-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UICollectionViewParallaxCell-dummy.m"; sourceTree = ""; }; 51 | 4266EF75E27A1506D849E14F99BAD610 /* Pods-UICollectionViewParallaxCell_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-UICollectionViewParallaxCell_Example-acknowledgements.plist"; sourceTree = ""; }; 52 | 49E80E7C88EE714B409CC31D8409B23A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 53 | 545F79CB1D0C8EE42EE96C8F0CDFEA3B /* Pods-UICollectionViewParallaxCell_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-UICollectionViewParallaxCell_Tests-acknowledgements.markdown"; sourceTree = ""; }; 54 | 58C55ABFCD46FB76530A201CFF546F33 /* Pods-UICollectionViewParallaxCell_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-UICollectionViewParallaxCell_Example.modulemap"; sourceTree = ""; }; 55 | 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 56 | 6880DDF0069ED0D6CBF3724C6F7CCD04 /* Pods-UICollectionViewParallaxCell_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-UICollectionViewParallaxCell_Example-acknowledgements.markdown"; sourceTree = ""; }; 57 | 6C57E7CEEB0657DC93C1BD211666E4A7 /* UICollectionViewParallaxCell-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UICollectionViewParallaxCell-umbrella.h"; sourceTree = ""; }; 58 | 6D4077A1CCAE97E19B2A3E9BD3678308 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 59 | 73407FEB1CAC54AA4CD2C03618686565 /* Pods_UICollectionViewParallaxCell_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_UICollectionViewParallaxCell_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 60 | 82B4A6CB36E928703003858410E7CA5D /* Pods-UICollectionViewParallaxCell_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-UICollectionViewParallaxCell_Example-resources.sh"; sourceTree = ""; }; 61 | 88A6FDFC6F6AE88423B696D790747BA1 /* UICollectionViewParallaxCell.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UICollectionViewParallaxCell.xcconfig; sourceTree = ""; }; 62 | 8E0C0F65BC8CE5C8ED6CE85E96901DFC /* Pods-UICollectionViewParallaxCell_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-UICollectionViewParallaxCell_Example-frameworks.sh"; sourceTree = ""; }; 63 | 901A917B88B3AE23789B39A52ED4A900 /* Pods-UICollectionViewParallaxCell_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-UICollectionViewParallaxCell_Tests-dummy.m"; sourceTree = ""; }; 64 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 65 | 961395CD206C5E7618B51C132586BD10 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 66 | A16E9D34717F5AC57A1848A83D3FF524 /* UICollectionViewParallaxCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UICollectionViewParallaxCell.swift; path = UICollectionViewParallaxCell/Classes/UICollectionViewParallaxCell.swift; sourceTree = ""; }; 67 | B262261E221616D10017B2FF /* UICollectionViewParallaxCellBACKUP.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UICollectionViewParallaxCellBACKUP.swift; sourceTree = ""; }; 68 | B590A55AAD591B4747901E01D451A06A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 69 | CA4E90D2D6069AB13743CA67D417EE5D /* Pods-UICollectionViewParallaxCell_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-UICollectionViewParallaxCell_Tests.modulemap"; sourceTree = ""; }; 70 | CC5EF9F44CCDD311488162ACAFF1755B /* Pods_UICollectionViewParallaxCell_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_UICollectionViewParallaxCell_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 71 | D5222A89EC5B5D0DF718DA46AD797035 /* Pods-UICollectionViewParallaxCell_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UICollectionViewParallaxCell_Example.release.xcconfig"; sourceTree = ""; }; 72 | DE06233C7C6A50091EC9D0FCF19136AF /* Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig"; sourceTree = ""; }; 73 | E62F66490D07AE9013F4CDB19D2B07AB /* Pods-UICollectionViewParallaxCell_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-UICollectionViewParallaxCell_Tests-resources.sh"; sourceTree = ""; }; 74 | EAEE33B83D86091C2FE1ECCACBD0890B /* Pods-UICollectionViewParallaxCell_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-UICollectionViewParallaxCell_Tests-frameworks.sh"; sourceTree = ""; }; 75 | F0EA3ACCF1CE25DBBFFDFBA459347F8F /* UICollectionViewParallaxCell.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = UICollectionViewParallaxCell.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 76 | F84BFFED383EE2A992D86E84E76C2A1E /* UICollectionViewParallaxCell.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = UICollectionViewParallaxCell.modulemap; sourceTree = ""; }; 77 | FDCDC2D067A8CF219738C9C778376A7F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 78 | /* End PBXFileReference section */ 79 | 80 | /* Begin PBXFrameworksBuildPhase section */ 81 | 8833E46DFA3D318347A097AEA203C7D5 /* Frameworks */ = { 82 | isa = PBXFrameworksBuildPhase; 83 | buildActionMask = 2147483647; 84 | files = ( 85 | 93930F30DD26A573813D2F96D21075AA /* Foundation.framework in Frameworks */, 86 | ); 87 | runOnlyForDeploymentPostprocessing = 0; 88 | }; 89 | A988454656C963B98A6D232F722833B6 /* Frameworks */ = { 90 | isa = PBXFrameworksBuildPhase; 91 | buildActionMask = 2147483647; 92 | files = ( 93 | C527B2321EA69099B0EBAACEC5D430AE /* Foundation.framework in Frameworks */, 94 | ); 95 | runOnlyForDeploymentPostprocessing = 0; 96 | }; 97 | E96F8A8E7E1B883622903BB2CE0D446F /* Frameworks */ = { 98 | isa = PBXFrameworksBuildPhase; 99 | buildActionMask = 2147483647; 100 | files = ( 101 | 92020205B567CC5AC0D16D2AE95EF591 /* Foundation.framework in Frameworks */, 102 | ); 103 | runOnlyForDeploymentPostprocessing = 0; 104 | }; 105 | /* End PBXFrameworksBuildPhase section */ 106 | 107 | /* Begin PBXGroup section */ 108 | 00CBE13D01577EF7EA097D15FD50004B /* Targets Support Files */ = { 109 | isa = PBXGroup; 110 | children = ( 111 | 1BE84428902D6FBECF7AEA1D084BB086 /* Pods-UICollectionViewParallaxCell_Example */, 112 | 8D824BE90A0934C989CC9ACAA750B61E /* Pods-UICollectionViewParallaxCell_Tests */, 113 | ); 114 | name = "Targets Support Files"; 115 | sourceTree = ""; 116 | }; 117 | 1BE84428902D6FBECF7AEA1D084BB086 /* Pods-UICollectionViewParallaxCell_Example */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | FDCDC2D067A8CF219738C9C778376A7F /* Info.plist */, 121 | 58C55ABFCD46FB76530A201CFF546F33 /* Pods-UICollectionViewParallaxCell_Example.modulemap */, 122 | 6880DDF0069ED0D6CBF3724C6F7CCD04 /* Pods-UICollectionViewParallaxCell_Example-acknowledgements.markdown */, 123 | 4266EF75E27A1506D849E14F99BAD610 /* Pods-UICollectionViewParallaxCell_Example-acknowledgements.plist */, 124 | 27E7C4839BFAA66DCFB1EDE1FB3CA309 /* Pods-UICollectionViewParallaxCell_Example-dummy.m */, 125 | 8E0C0F65BC8CE5C8ED6CE85E96901DFC /* Pods-UICollectionViewParallaxCell_Example-frameworks.sh */, 126 | 82B4A6CB36E928703003858410E7CA5D /* Pods-UICollectionViewParallaxCell_Example-resources.sh */, 127 | 1785C0EB4A99154042D3C0F4869BCDFC /* Pods-UICollectionViewParallaxCell_Example-umbrella.h */, 128 | 2FBD5C4BA6CAE0D8C19027F1188B97E9 /* Pods-UICollectionViewParallaxCell_Example.debug.xcconfig */, 129 | D5222A89EC5B5D0DF718DA46AD797035 /* Pods-UICollectionViewParallaxCell_Example.release.xcconfig */, 130 | ); 131 | name = "Pods-UICollectionViewParallaxCell_Example"; 132 | path = "Target Support Files/Pods-UICollectionViewParallaxCell_Example"; 133 | sourceTree = ""; 134 | }; 135 | 5B697C1E1B78EA420D2083B228285CB0 /* Products */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | CC5EF9F44CCDD311488162ACAFF1755B /* Pods_UICollectionViewParallaxCell_Example.framework */, 139 | 73407FEB1CAC54AA4CD2C03618686565 /* Pods_UICollectionViewParallaxCell_Tests.framework */, 140 | 1FB007D950AE85ED565513E24F498B31 /* UICollectionViewParallaxCell.framework */, 141 | ); 142 | name = Products; 143 | sourceTree = ""; 144 | }; 145 | 5E0D919E635D23B70123790B8308F8EF /* iOS */ = { 146 | isa = PBXGroup; 147 | children = ( 148 | 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */, 149 | ); 150 | name = iOS; 151 | sourceTree = ""; 152 | }; 153 | 7DB346D0F39D3F0E887471402A8071AB = { 154 | isa = PBXGroup; 155 | children = ( 156 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 157 | C4C25AFB3677D8C55A044041C18CB1B7 /* Development Pods */, 158 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 159 | 5B697C1E1B78EA420D2083B228285CB0 /* Products */, 160 | 00CBE13D01577EF7EA097D15FD50004B /* Targets Support Files */, 161 | ); 162 | sourceTree = ""; 163 | }; 164 | 8D824BE90A0934C989CC9ACAA750B61E /* Pods-UICollectionViewParallaxCell_Tests */ = { 165 | isa = PBXGroup; 166 | children = ( 167 | B590A55AAD591B4747901E01D451A06A /* Info.plist */, 168 | CA4E90D2D6069AB13743CA67D417EE5D /* Pods-UICollectionViewParallaxCell_Tests.modulemap */, 169 | 545F79CB1D0C8EE42EE96C8F0CDFEA3B /* Pods-UICollectionViewParallaxCell_Tests-acknowledgements.markdown */, 170 | 2B0F199CA3616EC9FD36DDC39991BAEC /* Pods-UICollectionViewParallaxCell_Tests-acknowledgements.plist */, 171 | 901A917B88B3AE23789B39A52ED4A900 /* Pods-UICollectionViewParallaxCell_Tests-dummy.m */, 172 | EAEE33B83D86091C2FE1ECCACBD0890B /* Pods-UICollectionViewParallaxCell_Tests-frameworks.sh */, 173 | E62F66490D07AE9013F4CDB19D2B07AB /* Pods-UICollectionViewParallaxCell_Tests-resources.sh */, 174 | 340ADF6738BB6D403885C13C7CE7D468 /* Pods-UICollectionViewParallaxCell_Tests-umbrella.h */, 175 | DE06233C7C6A50091EC9D0FCF19136AF /* Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig */, 176 | 2B76E1B4BBAE5841D9D0D7CD44D21874 /* Pods-UICollectionViewParallaxCell_Tests.release.xcconfig */, 177 | ); 178 | name = "Pods-UICollectionViewParallaxCell_Tests"; 179 | path = "Target Support Files/Pods-UICollectionViewParallaxCell_Tests"; 180 | sourceTree = ""; 181 | }; 182 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 183 | isa = PBXGroup; 184 | children = ( 185 | 5E0D919E635D23B70123790B8308F8EF /* iOS */, 186 | ); 187 | name = Frameworks; 188 | sourceTree = ""; 189 | }; 190 | C132F38B50F89EB4F7CC4ED3150BB855 /* Support Files */ = { 191 | isa = PBXGroup; 192 | children = ( 193 | 961395CD206C5E7618B51C132586BD10 /* Info.plist */, 194 | F84BFFED383EE2A992D86E84E76C2A1E /* UICollectionViewParallaxCell.modulemap */, 195 | 88A6FDFC6F6AE88423B696D790747BA1 /* UICollectionViewParallaxCell.xcconfig */, 196 | 3897F122A148798C8205BEE804AC922C /* UICollectionViewParallaxCell-dummy.m */, 197 | 1EB4CD771FAAD1B4451755B90AEA0145 /* UICollectionViewParallaxCell-prefix.pch */, 198 | 6C57E7CEEB0657DC93C1BD211666E4A7 /* UICollectionViewParallaxCell-umbrella.h */, 199 | ); 200 | name = "Support Files"; 201 | path = "Example/Pods/Target Support Files/UICollectionViewParallaxCell"; 202 | sourceTree = ""; 203 | }; 204 | C4C25AFB3677D8C55A044041C18CB1B7 /* Development Pods */ = { 205 | isa = PBXGroup; 206 | children = ( 207 | FE400EBB7AC7026FF8079282843EFD84 /* UICollectionViewParallaxCell */, 208 | ); 209 | name = "Development Pods"; 210 | sourceTree = ""; 211 | }; 212 | CACE8256D3962505E7E3258DD4EAEDAD /* Pod */ = { 213 | isa = PBXGroup; 214 | children = ( 215 | 49E80E7C88EE714B409CC31D8409B23A /* LICENSE */, 216 | 6D4077A1CCAE97E19B2A3E9BD3678308 /* README.md */, 217 | F0EA3ACCF1CE25DBBFFDFBA459347F8F /* UICollectionViewParallaxCell.podspec */, 218 | ); 219 | name = Pod; 220 | sourceTree = ""; 221 | }; 222 | FE400EBB7AC7026FF8079282843EFD84 /* UICollectionViewParallaxCell */ = { 223 | isa = PBXGroup; 224 | children = ( 225 | A16E9D34717F5AC57A1848A83D3FF524 /* UICollectionViewParallaxCell.swift */, 226 | CACE8256D3962505E7E3258DD4EAEDAD /* Pod */, 227 | C132F38B50F89EB4F7CC4ED3150BB855 /* Support Files */, 228 | B262261E221616D10017B2FF /* UICollectionViewParallaxCellBACKUP.swift */, 229 | ); 230 | name = UICollectionViewParallaxCell; 231 | path = ../..; 232 | sourceTree = ""; 233 | }; 234 | /* End PBXGroup section */ 235 | 236 | /* Begin PBXHeadersBuildPhase section */ 237 | 0B45D52518101A6863C2725A79DC40EE /* Headers */ = { 238 | isa = PBXHeadersBuildPhase; 239 | buildActionMask = 2147483647; 240 | files = ( 241 | D2CAB762EB244572631868B5B54CC328 /* Pods-UICollectionViewParallaxCell_Example-umbrella.h in Headers */, 242 | ); 243 | runOnlyForDeploymentPostprocessing = 0; 244 | }; 245 | BE7DFC59214428FB3CF2B20B00CAFA79 /* Headers */ = { 246 | isa = PBXHeadersBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | 74724694486E1B8D8904F047A3A821A9 /* UICollectionViewParallaxCell-umbrella.h in Headers */, 250 | ); 251 | runOnlyForDeploymentPostprocessing = 0; 252 | }; 253 | C33C96961C68AAC6AEC21FFF7113BBF8 /* Headers */ = { 254 | isa = PBXHeadersBuildPhase; 255 | buildActionMask = 2147483647; 256 | files = ( 257 | 9F65E1D7C8BFEF912B4459E729A68497 /* Pods-UICollectionViewParallaxCell_Tests-umbrella.h in Headers */, 258 | ); 259 | runOnlyForDeploymentPostprocessing = 0; 260 | }; 261 | /* End PBXHeadersBuildPhase section */ 262 | 263 | /* Begin PBXNativeTarget section */ 264 | 12E0836C42127E57D2CD06DC85C35335 /* Pods-UICollectionViewParallaxCell_Tests */ = { 265 | isa = PBXNativeTarget; 266 | buildConfigurationList = 188F4C8B85A05CB1BD2B0CB4B79980E0 /* Build configuration list for PBXNativeTarget "Pods-UICollectionViewParallaxCell_Tests" */; 267 | buildPhases = ( 268 | 313A419CA3AB17D5C8F47E3C2258F326 /* Sources */, 269 | 8833E46DFA3D318347A097AEA203C7D5 /* Frameworks */, 270 | C33C96961C68AAC6AEC21FFF7113BBF8 /* Headers */, 271 | ); 272 | buildRules = ( 273 | ); 274 | dependencies = ( 275 | 64C31089056DF80E733FFCA62D27041E /* PBXTargetDependency */, 276 | ); 277 | name = "Pods-UICollectionViewParallaxCell_Tests"; 278 | productName = "Pods-UICollectionViewParallaxCell_Tests"; 279 | productReference = 73407FEB1CAC54AA4CD2C03618686565 /* Pods_UICollectionViewParallaxCell_Tests.framework */; 280 | productType = "com.apple.product-type.framework"; 281 | }; 282 | 30945AD0F530E5E7C9AB38980BA1DE56 /* UICollectionViewParallaxCell */ = { 283 | isa = PBXNativeTarget; 284 | buildConfigurationList = D2F6B650C365C06F61E31EC18C5F7CD8 /* Build configuration list for PBXNativeTarget "UICollectionViewParallaxCell" */; 285 | buildPhases = ( 286 | 521520838E83511F41B3C288136D7D53 /* Sources */, 287 | E96F8A8E7E1B883622903BB2CE0D446F /* Frameworks */, 288 | BE7DFC59214428FB3CF2B20B00CAFA79 /* Headers */, 289 | ); 290 | buildRules = ( 291 | ); 292 | dependencies = ( 293 | ); 294 | name = UICollectionViewParallaxCell; 295 | productName = UICollectionViewParallaxCell; 296 | productReference = 1FB007D950AE85ED565513E24F498B31 /* UICollectionViewParallaxCell.framework */; 297 | productType = "com.apple.product-type.framework"; 298 | }; 299 | 611E167ABE89536F765472B75E5D77A9 /* Pods-UICollectionViewParallaxCell_Example */ = { 300 | isa = PBXNativeTarget; 301 | buildConfigurationList = 31B5C07773C77E79E41561D63AA3907F /* Build configuration list for PBXNativeTarget "Pods-UICollectionViewParallaxCell_Example" */; 302 | buildPhases = ( 303 | 5288D7DC9C7E86EAD04E70B152CA23FD /* Sources */, 304 | A988454656C963B98A6D232F722833B6 /* Frameworks */, 305 | 0B45D52518101A6863C2725A79DC40EE /* Headers */, 306 | ); 307 | buildRules = ( 308 | ); 309 | dependencies = ( 310 | 34727B7E60EBB495AC43B984402CE53F /* PBXTargetDependency */, 311 | ); 312 | name = "Pods-UICollectionViewParallaxCell_Example"; 313 | productName = "Pods-UICollectionViewParallaxCell_Example"; 314 | productReference = CC5EF9F44CCDD311488162ACAFF1755B /* Pods_UICollectionViewParallaxCell_Example.framework */; 315 | productType = "com.apple.product-type.framework"; 316 | }; 317 | /* End PBXNativeTarget section */ 318 | 319 | /* Begin PBXProject section */ 320 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 321 | isa = PBXProject; 322 | attributes = { 323 | LastSwiftUpdateCheck = 0930; 324 | LastUpgradeCheck = 1010; 325 | TargetAttributes = { 326 | 30945AD0F530E5E7C9AB38980BA1DE56 = { 327 | LastSwiftMigration = 1010; 328 | }; 329 | 611E167ABE89536F765472B75E5D77A9 = { 330 | DevelopmentTeam = XREP97TJKH; 331 | LastSwiftMigration = 1010; 332 | }; 333 | }; 334 | }; 335 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 336 | compatibilityVersion = "Xcode 3.2"; 337 | developmentRegion = English; 338 | hasScannedForEncodings = 0; 339 | knownRegions = ( 340 | en, 341 | ); 342 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 343 | productRefGroup = 5B697C1E1B78EA420D2083B228285CB0 /* Products */; 344 | projectDirPath = ""; 345 | projectRoot = ""; 346 | targets = ( 347 | 611E167ABE89536F765472B75E5D77A9 /* Pods-UICollectionViewParallaxCell_Example */, 348 | 12E0836C42127E57D2CD06DC85C35335 /* Pods-UICollectionViewParallaxCell_Tests */, 349 | 30945AD0F530E5E7C9AB38980BA1DE56 /* UICollectionViewParallaxCell */, 350 | ); 351 | }; 352 | /* End PBXProject section */ 353 | 354 | /* Begin PBXSourcesBuildPhase section */ 355 | 313A419CA3AB17D5C8F47E3C2258F326 /* Sources */ = { 356 | isa = PBXSourcesBuildPhase; 357 | buildActionMask = 2147483647; 358 | files = ( 359 | DF4A2AC141C34DB58439EF0CCB9236C0 /* Pods-UICollectionViewParallaxCell_Tests-dummy.m in Sources */, 360 | ); 361 | runOnlyForDeploymentPostprocessing = 0; 362 | }; 363 | 521520838E83511F41B3C288136D7D53 /* Sources */ = { 364 | isa = PBXSourcesBuildPhase; 365 | buildActionMask = 2147483647; 366 | files = ( 367 | B20C6D22221620EF00EE7219 /* UICollectionViewParallaxCellBACKUP.swift in Sources */, 368 | C1BC5AC34F6E760C2A48B815972CB628 /* UICollectionViewParallaxCell.swift in Sources */, 369 | 3E5AF2AEB54EDF9744E79C6ACEC5FFB8 /* UICollectionViewParallaxCell-dummy.m in Sources */, 370 | ); 371 | runOnlyForDeploymentPostprocessing = 0; 372 | }; 373 | 5288D7DC9C7E86EAD04E70B152CA23FD /* Sources */ = { 374 | isa = PBXSourcesBuildPhase; 375 | buildActionMask = 2147483647; 376 | files = ( 377 | 082AB04238C5F5A7A343B4E8AFE7FD6D /* Pods-UICollectionViewParallaxCell_Example-dummy.m in Sources */, 378 | B262261F221616D10017B2FF /* UICollectionViewParallaxCellBACKUP.swift in Sources */, 379 | ); 380 | runOnlyForDeploymentPostprocessing = 0; 381 | }; 382 | /* End PBXSourcesBuildPhase section */ 383 | 384 | /* Begin PBXTargetDependency section */ 385 | 34727B7E60EBB495AC43B984402CE53F /* PBXTargetDependency */ = { 386 | isa = PBXTargetDependency; 387 | name = UICollectionViewParallaxCell; 388 | target = 30945AD0F530E5E7C9AB38980BA1DE56 /* UICollectionViewParallaxCell */; 389 | targetProxy = DF8D492C6D924D85E5FEB28C911B19DF /* PBXContainerItemProxy */; 390 | }; 391 | 64C31089056DF80E733FFCA62D27041E /* PBXTargetDependency */ = { 392 | isa = PBXTargetDependency; 393 | name = "Pods-UICollectionViewParallaxCell_Example"; 394 | target = 611E167ABE89536F765472B75E5D77A9 /* Pods-UICollectionViewParallaxCell_Example */; 395 | targetProxy = 5AFE8CEDF692E461721E4BFCE04079B5 /* PBXContainerItemProxy */; 396 | }; 397 | /* End PBXTargetDependency section */ 398 | 399 | /* Begin XCBuildConfiguration section */ 400 | 611880F7EED300F16C7218293A4E5CBB /* Debug */ = { 401 | isa = XCBuildConfiguration; 402 | baseConfigurationReference = 2FBD5C4BA6CAE0D8C19027F1188B97E9 /* Pods-UICollectionViewParallaxCell_Example.debug.xcconfig */; 403 | buildSettings = { 404 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 405 | CLANG_ENABLE_MODULES = YES; 406 | CODE_SIGN_IDENTITY = "iPhone Developer"; 407 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 408 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 409 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 410 | CURRENT_PROJECT_VERSION = 1; 411 | DEFINES_MODULE = YES; 412 | DEVELOPMENT_TEAM = XREP97TJKH; 413 | DYLIB_COMPATIBILITY_VERSION = 1; 414 | DYLIB_CURRENT_VERSION = 1; 415 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 416 | INFOPLIST_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Example/Info.plist"; 417 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 418 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 419 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 420 | MACH_O_TYPE = staticlib; 421 | MODULEMAP_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example.modulemap"; 422 | OTHER_LDFLAGS = ""; 423 | OTHER_LIBTOOLFLAGS = ""; 424 | PODS_ROOT = "$(SRCROOT)"; 425 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 426 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 427 | SDKROOT = iphoneos; 428 | SKIP_INSTALL = YES; 429 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 430 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 431 | SWIFT_VERSION = 4.2; 432 | TARGETED_DEVICE_FAMILY = "1,2"; 433 | VERSIONING_SYSTEM = "apple-generic"; 434 | VERSION_INFO_PREFIX = ""; 435 | }; 436 | name = Debug; 437 | }; 438 | 8B33C5230DE4A9DFA6D8F46505DD7AF7 /* Debug */ = { 439 | isa = XCBuildConfiguration; 440 | buildSettings = { 441 | ALWAYS_SEARCH_USER_PATHS = NO; 442 | CLANG_ANALYZER_NONNULL = YES; 443 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 444 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 445 | CLANG_CXX_LIBRARY = "libc++"; 446 | CLANG_ENABLE_MODULES = YES; 447 | CLANG_ENABLE_OBJC_ARC = YES; 448 | CLANG_ENABLE_OBJC_WEAK = YES; 449 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 450 | CLANG_WARN_BOOL_CONVERSION = YES; 451 | CLANG_WARN_COMMA = YES; 452 | CLANG_WARN_CONSTANT_CONVERSION = YES; 453 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 454 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 455 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 456 | CLANG_WARN_EMPTY_BODY = YES; 457 | CLANG_WARN_ENUM_CONVERSION = YES; 458 | CLANG_WARN_INFINITE_RECURSION = YES; 459 | CLANG_WARN_INT_CONVERSION = YES; 460 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 461 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 462 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 463 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 464 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 465 | CLANG_WARN_STRICT_PROTOTYPES = YES; 466 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 467 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 468 | CLANG_WARN_UNREACHABLE_CODE = YES; 469 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 470 | CODE_SIGNING_ALLOWED = NO; 471 | CODE_SIGNING_REQUIRED = NO; 472 | COPY_PHASE_STRIP = NO; 473 | DEBUG_INFORMATION_FORMAT = dwarf; 474 | ENABLE_STRICT_OBJC_MSGSEND = YES; 475 | ENABLE_TESTABILITY = YES; 476 | GCC_C_LANGUAGE_STANDARD = gnu11; 477 | GCC_DYNAMIC_NO_PIC = NO; 478 | GCC_NO_COMMON_BLOCKS = YES; 479 | GCC_OPTIMIZATION_LEVEL = 0; 480 | GCC_PREPROCESSOR_DEFINITIONS = ( 481 | "POD_CONFIGURATION_DEBUG=1", 482 | "DEBUG=1", 483 | "$(inherited)", 484 | ); 485 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 486 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 487 | GCC_WARN_UNDECLARED_SELECTOR = YES; 488 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 489 | GCC_WARN_UNUSED_FUNCTION = YES; 490 | GCC_WARN_UNUSED_VARIABLE = YES; 491 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 492 | MTL_ENABLE_DEBUG_INFO = YES; 493 | ONLY_ACTIVE_ARCH = YES; 494 | PRODUCT_NAME = "$(TARGET_NAME)"; 495 | STRIP_INSTALLED_PRODUCT = NO; 496 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 497 | SYMROOT = "${SRCROOT}/../build"; 498 | }; 499 | name = Debug; 500 | }; 501 | B42B54097A876E8A982CBF5DAA91B1AB /* Release */ = { 502 | isa = XCBuildConfiguration; 503 | buildSettings = { 504 | ALWAYS_SEARCH_USER_PATHS = NO; 505 | CLANG_ANALYZER_NONNULL = YES; 506 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 507 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 508 | CLANG_CXX_LIBRARY = "libc++"; 509 | CLANG_ENABLE_MODULES = YES; 510 | CLANG_ENABLE_OBJC_ARC = YES; 511 | CLANG_ENABLE_OBJC_WEAK = YES; 512 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 513 | CLANG_WARN_BOOL_CONVERSION = YES; 514 | CLANG_WARN_COMMA = YES; 515 | CLANG_WARN_CONSTANT_CONVERSION = YES; 516 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 517 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 518 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 519 | CLANG_WARN_EMPTY_BODY = YES; 520 | CLANG_WARN_ENUM_CONVERSION = YES; 521 | CLANG_WARN_INFINITE_RECURSION = YES; 522 | CLANG_WARN_INT_CONVERSION = YES; 523 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 524 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 525 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 526 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 527 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 528 | CLANG_WARN_STRICT_PROTOTYPES = YES; 529 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 530 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 531 | CLANG_WARN_UNREACHABLE_CODE = YES; 532 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 533 | CODE_SIGNING_ALLOWED = NO; 534 | CODE_SIGNING_REQUIRED = NO; 535 | COPY_PHASE_STRIP = NO; 536 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 537 | ENABLE_NS_ASSERTIONS = NO; 538 | ENABLE_STRICT_OBJC_MSGSEND = YES; 539 | GCC_C_LANGUAGE_STANDARD = gnu11; 540 | GCC_NO_COMMON_BLOCKS = YES; 541 | GCC_PREPROCESSOR_DEFINITIONS = ( 542 | "POD_CONFIGURATION_RELEASE=1", 543 | "$(inherited)", 544 | ); 545 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 546 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 547 | GCC_WARN_UNDECLARED_SELECTOR = YES; 548 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 549 | GCC_WARN_UNUSED_FUNCTION = YES; 550 | GCC_WARN_UNUSED_VARIABLE = YES; 551 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 552 | MTL_ENABLE_DEBUG_INFO = NO; 553 | PRODUCT_NAME = "$(TARGET_NAME)"; 554 | STRIP_INSTALLED_PRODUCT = NO; 555 | SWIFT_COMPILATION_MODE = wholemodule; 556 | SYMROOT = "${SRCROOT}/../build"; 557 | }; 558 | name = Release; 559 | }; 560 | C31090D85E3BB6DCCC1B994FB9EC3C06 /* Release */ = { 561 | isa = XCBuildConfiguration; 562 | baseConfigurationReference = 88A6FDFC6F6AE88423B696D790747BA1 /* UICollectionViewParallaxCell.xcconfig */; 563 | buildSettings = { 564 | CODE_SIGN_IDENTITY = ""; 565 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 566 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 567 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 568 | CURRENT_PROJECT_VERSION = 1; 569 | DEFINES_MODULE = YES; 570 | DYLIB_COMPATIBILITY_VERSION = 1; 571 | DYLIB_CURRENT_VERSION = 1; 572 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 573 | GCC_PREFIX_HEADER = "Target Support Files/UICollectionViewParallaxCell/UICollectionViewParallaxCell-prefix.pch"; 574 | INFOPLIST_FILE = "Target Support Files/UICollectionViewParallaxCell/Info.plist"; 575 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 576 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 577 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 578 | MODULEMAP_FILE = "Target Support Files/UICollectionViewParallaxCell/UICollectionViewParallaxCell.modulemap"; 579 | PRODUCT_MODULE_NAME = UICollectionViewParallaxCell; 580 | PRODUCT_NAME = UICollectionViewParallaxCell; 581 | SDKROOT = iphoneos; 582 | SKIP_INSTALL = YES; 583 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 584 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 585 | SWIFT_VERSION = 4.2; 586 | TARGETED_DEVICE_FAMILY = "1,2"; 587 | VALIDATE_PRODUCT = YES; 588 | VERSIONING_SYSTEM = "apple-generic"; 589 | VERSION_INFO_PREFIX = ""; 590 | }; 591 | name = Release; 592 | }; 593 | CBB69E5198E776E271AC9B69A6644F2A /* Debug */ = { 594 | isa = XCBuildConfiguration; 595 | baseConfigurationReference = 88A6FDFC6F6AE88423B696D790747BA1 /* UICollectionViewParallaxCell.xcconfig */; 596 | buildSettings = { 597 | CODE_SIGN_IDENTITY = ""; 598 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 599 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 600 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 601 | CURRENT_PROJECT_VERSION = 1; 602 | DEFINES_MODULE = YES; 603 | DYLIB_COMPATIBILITY_VERSION = 1; 604 | DYLIB_CURRENT_VERSION = 1; 605 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 606 | GCC_PREFIX_HEADER = "Target Support Files/UICollectionViewParallaxCell/UICollectionViewParallaxCell-prefix.pch"; 607 | INFOPLIST_FILE = "Target Support Files/UICollectionViewParallaxCell/Info.plist"; 608 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 609 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 610 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 611 | MODULEMAP_FILE = "Target Support Files/UICollectionViewParallaxCell/UICollectionViewParallaxCell.modulemap"; 612 | PRODUCT_MODULE_NAME = UICollectionViewParallaxCell; 613 | PRODUCT_NAME = UICollectionViewParallaxCell; 614 | SDKROOT = iphoneos; 615 | SKIP_INSTALL = YES; 616 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 617 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 618 | SWIFT_VERSION = 4.2; 619 | TARGETED_DEVICE_FAMILY = "1,2"; 620 | VERSIONING_SYSTEM = "apple-generic"; 621 | VERSION_INFO_PREFIX = ""; 622 | }; 623 | name = Debug; 624 | }; 625 | E1C4269C859E619679F420442C7F80D0 /* Debug */ = { 626 | isa = XCBuildConfiguration; 627 | baseConfigurationReference = DE06233C7C6A50091EC9D0FCF19136AF /* Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig */; 628 | buildSettings = { 629 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 630 | CODE_SIGN_IDENTITY = ""; 631 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 632 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 633 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 634 | CURRENT_PROJECT_VERSION = 1; 635 | DEFINES_MODULE = YES; 636 | DYLIB_COMPATIBILITY_VERSION = 1; 637 | DYLIB_CURRENT_VERSION = 1; 638 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 639 | INFOPLIST_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Info.plist"; 640 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 641 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 642 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 643 | MACH_O_TYPE = staticlib; 644 | MODULEMAP_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests.modulemap"; 645 | OTHER_LDFLAGS = ""; 646 | OTHER_LIBTOOLFLAGS = ""; 647 | PODS_ROOT = "$(SRCROOT)"; 648 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 649 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 650 | SDKROOT = iphoneos; 651 | SKIP_INSTALL = YES; 652 | TARGETED_DEVICE_FAMILY = "1,2"; 653 | VERSIONING_SYSTEM = "apple-generic"; 654 | VERSION_INFO_PREFIX = ""; 655 | }; 656 | name = Debug; 657 | }; 658 | E3FECB77BE6D7A1884F02BB5C3F4D5B4 /* Release */ = { 659 | isa = XCBuildConfiguration; 660 | baseConfigurationReference = 2B76E1B4BBAE5841D9D0D7CD44D21874 /* Pods-UICollectionViewParallaxCell_Tests.release.xcconfig */; 661 | buildSettings = { 662 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 663 | CODE_SIGN_IDENTITY = ""; 664 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 665 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 666 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 667 | CURRENT_PROJECT_VERSION = 1; 668 | DEFINES_MODULE = YES; 669 | DYLIB_COMPATIBILITY_VERSION = 1; 670 | DYLIB_CURRENT_VERSION = 1; 671 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 672 | INFOPLIST_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Info.plist"; 673 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 674 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 675 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 676 | MACH_O_TYPE = staticlib; 677 | MODULEMAP_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests.modulemap"; 678 | OTHER_LDFLAGS = ""; 679 | OTHER_LIBTOOLFLAGS = ""; 680 | PODS_ROOT = "$(SRCROOT)"; 681 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 682 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 683 | SDKROOT = iphoneos; 684 | SKIP_INSTALL = YES; 685 | TARGETED_DEVICE_FAMILY = "1,2"; 686 | VALIDATE_PRODUCT = YES; 687 | VERSIONING_SYSTEM = "apple-generic"; 688 | VERSION_INFO_PREFIX = ""; 689 | }; 690 | name = Release; 691 | }; 692 | FE38729BB2CAFC51A5C4C71C579DF875 /* Release */ = { 693 | isa = XCBuildConfiguration; 694 | baseConfigurationReference = D5222A89EC5B5D0DF718DA46AD797035 /* Pods-UICollectionViewParallaxCell_Example.release.xcconfig */; 695 | buildSettings = { 696 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 697 | CLANG_ENABLE_MODULES = YES; 698 | CODE_SIGN_IDENTITY = ""; 699 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 700 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 701 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 702 | CURRENT_PROJECT_VERSION = 1; 703 | DEFINES_MODULE = YES; 704 | DYLIB_COMPATIBILITY_VERSION = 1; 705 | DYLIB_CURRENT_VERSION = 1; 706 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 707 | INFOPLIST_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Example/Info.plist"; 708 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 709 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 710 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 711 | MACH_O_TYPE = staticlib; 712 | MODULEMAP_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example.modulemap"; 713 | OTHER_LDFLAGS = ""; 714 | OTHER_LIBTOOLFLAGS = ""; 715 | PODS_ROOT = "$(SRCROOT)"; 716 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 717 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 718 | SDKROOT = iphoneos; 719 | SKIP_INSTALL = YES; 720 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 721 | SWIFT_VERSION = 4.2; 722 | TARGETED_DEVICE_FAMILY = "1,2"; 723 | VALIDATE_PRODUCT = YES; 724 | VERSIONING_SYSTEM = "apple-generic"; 725 | VERSION_INFO_PREFIX = ""; 726 | }; 727 | name = Release; 728 | }; 729 | /* End XCBuildConfiguration section */ 730 | 731 | /* Begin XCConfigurationList section */ 732 | 188F4C8B85A05CB1BD2B0CB4B79980E0 /* Build configuration list for PBXNativeTarget "Pods-UICollectionViewParallaxCell_Tests" */ = { 733 | isa = XCConfigurationList; 734 | buildConfigurations = ( 735 | E1C4269C859E619679F420442C7F80D0 /* Debug */, 736 | E3FECB77BE6D7A1884F02BB5C3F4D5B4 /* Release */, 737 | ); 738 | defaultConfigurationIsVisible = 0; 739 | defaultConfigurationName = Release; 740 | }; 741 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 742 | isa = XCConfigurationList; 743 | buildConfigurations = ( 744 | 8B33C5230DE4A9DFA6D8F46505DD7AF7 /* Debug */, 745 | B42B54097A876E8A982CBF5DAA91B1AB /* Release */, 746 | ); 747 | defaultConfigurationIsVisible = 0; 748 | defaultConfigurationName = Release; 749 | }; 750 | 31B5C07773C77E79E41561D63AA3907F /* Build configuration list for PBXNativeTarget "Pods-UICollectionViewParallaxCell_Example" */ = { 751 | isa = XCConfigurationList; 752 | buildConfigurations = ( 753 | 611880F7EED300F16C7218293A4E5CBB /* Debug */, 754 | FE38729BB2CAFC51A5C4C71C579DF875 /* Release */, 755 | ); 756 | defaultConfigurationIsVisible = 0; 757 | defaultConfigurationName = Release; 758 | }; 759 | D2F6B650C365C06F61E31EC18C5F7CD8 /* Build configuration list for PBXNativeTarget "UICollectionViewParallaxCell" */ = { 760 | isa = XCConfigurationList; 761 | buildConfigurations = ( 762 | CBB69E5198E776E271AC9B69A6644F2A /* Debug */, 763 | C31090D85E3BB6DCCC1B994FB9EC3C06 /* Release */, 764 | ); 765 | defaultConfigurationIsVisible = 0; 766 | defaultConfigurationName = Release; 767 | }; 768 | /* End XCConfigurationList section */ 769 | }; 770 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 771 | } 772 | -------------------------------------------------------------------------------- /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 | 082AB04238C5F5A7A343B4E8AFE7FD6D /* Pods-UICollectionViewParallaxCell_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27E7C4839BFAA66DCFB1EDE1FB3CA309 /* Pods-UICollectionViewParallaxCell_Example-dummy.m */; }; 11 | 3E5AF2AEB54EDF9744E79C6ACEC5FFB8 /* UICollectionViewParallaxCell-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3897F122A148798C8205BEE804AC922C /* UICollectionViewParallaxCell-dummy.m */; }; 12 | 74724694486E1B8D8904F047A3A821A9 /* UICollectionViewParallaxCell-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C57E7CEEB0657DC93C1BD211666E4A7 /* UICollectionViewParallaxCell-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 92020205B567CC5AC0D16D2AE95EF591 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */; }; 14 | 93930F30DD26A573813D2F96D21075AA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */; }; 15 | 9F65E1D7C8BFEF912B4459E729A68497 /* Pods-UICollectionViewParallaxCell_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 340ADF6738BB6D403885C13C7CE7D468 /* Pods-UICollectionViewParallaxCell_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | B20C6D22221620EF00EE7219 /* UICollectionViewParallaxCellBACKUP.swift in Sources */ = {isa = PBXBuildFile; fileRef = B262261E221616D10017B2FF /* UICollectionViewParallaxCellBACKUP.swift */; }; 17 | B262261F221616D10017B2FF /* UICollectionViewParallaxCellBACKUP.swift in Sources */ = {isa = PBXBuildFile; fileRef = B262261E221616D10017B2FF /* UICollectionViewParallaxCellBACKUP.swift */; }; 18 | C1BC5AC34F6E760C2A48B815972CB628 /* UICollectionViewParallaxCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A16E9D34717F5AC57A1848A83D3FF524 /* UICollectionViewParallaxCell.swift */; }; 19 | C527B2321EA69099B0EBAACEC5D430AE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */; }; 20 | D2CAB762EB244572631868B5B54CC328 /* Pods-UICollectionViewParallaxCell_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1785C0EB4A99154042D3C0F4869BCDFC /* Pods-UICollectionViewParallaxCell_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 21 | DF4A2AC141C34DB58439EF0CCB9236C0 /* Pods-UICollectionViewParallaxCell_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 901A917B88B3AE23789B39A52ED4A900 /* Pods-UICollectionViewParallaxCell_Tests-dummy.m */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXContainerItemProxy section */ 25 | 5AFE8CEDF692E461721E4BFCE04079B5 /* PBXContainerItemProxy */ = { 26 | isa = PBXContainerItemProxy; 27 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 28 | proxyType = 1; 29 | remoteGlobalIDString = 611E167ABE89536F765472B75E5D77A9; 30 | remoteInfo = "Pods-UICollectionViewParallaxCell_Example"; 31 | }; 32 | DF8D492C6D924D85E5FEB28C911B19DF /* PBXContainerItemProxy */ = { 33 | isa = PBXContainerItemProxy; 34 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 35 | proxyType = 1; 36 | remoteGlobalIDString = 30945AD0F530E5E7C9AB38980BA1DE56; 37 | remoteInfo = UICollectionViewParallaxCell; 38 | }; 39 | /* End PBXContainerItemProxy section */ 40 | 41 | /* Begin PBXFileReference section */ 42 | 1785C0EB4A99154042D3C0F4869BCDFC /* Pods-UICollectionViewParallaxCell_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-UICollectionViewParallaxCell_Example-umbrella.h"; sourceTree = ""; }; 43 | 1EB4CD771FAAD1B4451755B90AEA0145 /* UICollectionViewParallaxCell-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UICollectionViewParallaxCell-prefix.pch"; sourceTree = ""; }; 44 | 1FB007D950AE85ED565513E24F498B31 /* UICollectionViewParallaxCell.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UICollectionViewParallaxCell.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 27E7C4839BFAA66DCFB1EDE1FB3CA309 /* Pods-UICollectionViewParallaxCell_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-UICollectionViewParallaxCell_Example-dummy.m"; sourceTree = ""; }; 46 | 2B0F199CA3616EC9FD36DDC39991BAEC /* Pods-UICollectionViewParallaxCell_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-UICollectionViewParallaxCell_Tests-acknowledgements.plist"; sourceTree = ""; }; 47 | 2B76E1B4BBAE5841D9D0D7CD44D21874 /* Pods-UICollectionViewParallaxCell_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UICollectionViewParallaxCell_Tests.release.xcconfig"; sourceTree = ""; }; 48 | 2FBD5C4BA6CAE0D8C19027F1188B97E9 /* Pods-UICollectionViewParallaxCell_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UICollectionViewParallaxCell_Example.debug.xcconfig"; sourceTree = ""; }; 49 | 340ADF6738BB6D403885C13C7CE7D468 /* Pods-UICollectionViewParallaxCell_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-UICollectionViewParallaxCell_Tests-umbrella.h"; sourceTree = ""; }; 50 | 3897F122A148798C8205BEE804AC922C /* UICollectionViewParallaxCell-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UICollectionViewParallaxCell-dummy.m"; sourceTree = ""; }; 51 | 4266EF75E27A1506D849E14F99BAD610 /* Pods-UICollectionViewParallaxCell_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-UICollectionViewParallaxCell_Example-acknowledgements.plist"; sourceTree = ""; }; 52 | 49E80E7C88EE714B409CC31D8409B23A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 53 | 545F79CB1D0C8EE42EE96C8F0CDFEA3B /* Pods-UICollectionViewParallaxCell_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-UICollectionViewParallaxCell_Tests-acknowledgements.markdown"; sourceTree = ""; }; 54 | 58C55ABFCD46FB76530A201CFF546F33 /* Pods-UICollectionViewParallaxCell_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-UICollectionViewParallaxCell_Example.modulemap"; sourceTree = ""; }; 55 | 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 56 | 6880DDF0069ED0D6CBF3724C6F7CCD04 /* Pods-UICollectionViewParallaxCell_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-UICollectionViewParallaxCell_Example-acknowledgements.markdown"; sourceTree = ""; }; 57 | 6C57E7CEEB0657DC93C1BD211666E4A7 /* UICollectionViewParallaxCell-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UICollectionViewParallaxCell-umbrella.h"; sourceTree = ""; }; 58 | 6D4077A1CCAE97E19B2A3E9BD3678308 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 59 | 73407FEB1CAC54AA4CD2C03618686565 /* Pods_UICollectionViewParallaxCell_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_UICollectionViewParallaxCell_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 60 | 82B4A6CB36E928703003858410E7CA5D /* Pods-UICollectionViewParallaxCell_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-UICollectionViewParallaxCell_Example-resources.sh"; sourceTree = ""; }; 61 | 88A6FDFC6F6AE88423B696D790747BA1 /* UICollectionViewParallaxCell.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UICollectionViewParallaxCell.xcconfig; sourceTree = ""; }; 62 | 8E0C0F65BC8CE5C8ED6CE85E96901DFC /* Pods-UICollectionViewParallaxCell_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-UICollectionViewParallaxCell_Example-frameworks.sh"; sourceTree = ""; }; 63 | 901A917B88B3AE23789B39A52ED4A900 /* Pods-UICollectionViewParallaxCell_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-UICollectionViewParallaxCell_Tests-dummy.m"; sourceTree = ""; }; 64 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 65 | 961395CD206C5E7618B51C132586BD10 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 66 | A16E9D34717F5AC57A1848A83D3FF524 /* UICollectionViewParallaxCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UICollectionViewParallaxCell.swift; path = UICollectionViewParallaxCell/Classes/UICollectionViewParallaxCell.swift; sourceTree = ""; }; 67 | B262261E221616D10017B2FF /* UICollectionViewParallaxCellBACKUP.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UICollectionViewParallaxCellBACKUP.swift; sourceTree = ""; }; 68 | B590A55AAD591B4747901E01D451A06A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 69 | CA4E90D2D6069AB13743CA67D417EE5D /* Pods-UICollectionViewParallaxCell_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-UICollectionViewParallaxCell_Tests.modulemap"; sourceTree = ""; }; 70 | CC5EF9F44CCDD311488162ACAFF1755B /* Pods_UICollectionViewParallaxCell_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_UICollectionViewParallaxCell_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 71 | D5222A89EC5B5D0DF718DA46AD797035 /* Pods-UICollectionViewParallaxCell_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UICollectionViewParallaxCell_Example.release.xcconfig"; sourceTree = ""; }; 72 | DE06233C7C6A50091EC9D0FCF19136AF /* Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig"; sourceTree = ""; }; 73 | E62F66490D07AE9013F4CDB19D2B07AB /* Pods-UICollectionViewParallaxCell_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-UICollectionViewParallaxCell_Tests-resources.sh"; sourceTree = ""; }; 74 | EAEE33B83D86091C2FE1ECCACBD0890B /* Pods-UICollectionViewParallaxCell_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-UICollectionViewParallaxCell_Tests-frameworks.sh"; sourceTree = ""; }; 75 | F0EA3ACCF1CE25DBBFFDFBA459347F8F /* UICollectionViewParallaxCell.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = UICollectionViewParallaxCell.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 76 | F84BFFED383EE2A992D86E84E76C2A1E /* UICollectionViewParallaxCell.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = UICollectionViewParallaxCell.modulemap; sourceTree = ""; }; 77 | FDCDC2D067A8CF219738C9C778376A7F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 78 | /* End PBXFileReference section */ 79 | 80 | /* Begin PBXFrameworksBuildPhase section */ 81 | 8833E46DFA3D318347A097AEA203C7D5 /* Frameworks */ = { 82 | isa = PBXFrameworksBuildPhase; 83 | buildActionMask = 2147483647; 84 | files = ( 85 | 93930F30DD26A573813D2F96D21075AA /* Foundation.framework in Frameworks */, 86 | ); 87 | runOnlyForDeploymentPostprocessing = 0; 88 | }; 89 | A988454656C963B98A6D232F722833B6 /* Frameworks */ = { 90 | isa = PBXFrameworksBuildPhase; 91 | buildActionMask = 2147483647; 92 | files = ( 93 | C527B2321EA69099B0EBAACEC5D430AE /* Foundation.framework in Frameworks */, 94 | ); 95 | runOnlyForDeploymentPostprocessing = 0; 96 | }; 97 | E96F8A8E7E1B883622903BB2CE0D446F /* Frameworks */ = { 98 | isa = PBXFrameworksBuildPhase; 99 | buildActionMask = 2147483647; 100 | files = ( 101 | 92020205B567CC5AC0D16D2AE95EF591 /* Foundation.framework in Frameworks */, 102 | ); 103 | runOnlyForDeploymentPostprocessing = 0; 104 | }; 105 | /* End PBXFrameworksBuildPhase section */ 106 | 107 | /* Begin PBXGroup section */ 108 | 00CBE13D01577EF7EA097D15FD50004B /* Targets Support Files */ = { 109 | isa = PBXGroup; 110 | children = ( 111 | 1BE84428902D6FBECF7AEA1D084BB086 /* Pods-UICollectionViewParallaxCell_Example */, 112 | 8D824BE90A0934C989CC9ACAA750B61E /* Pods-UICollectionViewParallaxCell_Tests */, 113 | ); 114 | name = "Targets Support Files"; 115 | sourceTree = ""; 116 | }; 117 | 1BE84428902D6FBECF7AEA1D084BB086 /* Pods-UICollectionViewParallaxCell_Example */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | FDCDC2D067A8CF219738C9C778376A7F /* Info.plist */, 121 | 58C55ABFCD46FB76530A201CFF546F33 /* Pods-UICollectionViewParallaxCell_Example.modulemap */, 122 | 6880DDF0069ED0D6CBF3724C6F7CCD04 /* Pods-UICollectionViewParallaxCell_Example-acknowledgements.markdown */, 123 | 4266EF75E27A1506D849E14F99BAD610 /* Pods-UICollectionViewParallaxCell_Example-acknowledgements.plist */, 124 | 27E7C4839BFAA66DCFB1EDE1FB3CA309 /* Pods-UICollectionViewParallaxCell_Example-dummy.m */, 125 | 8E0C0F65BC8CE5C8ED6CE85E96901DFC /* Pods-UICollectionViewParallaxCell_Example-frameworks.sh */, 126 | 82B4A6CB36E928703003858410E7CA5D /* Pods-UICollectionViewParallaxCell_Example-resources.sh */, 127 | 1785C0EB4A99154042D3C0F4869BCDFC /* Pods-UICollectionViewParallaxCell_Example-umbrella.h */, 128 | 2FBD5C4BA6CAE0D8C19027F1188B97E9 /* Pods-UICollectionViewParallaxCell_Example.debug.xcconfig */, 129 | D5222A89EC5B5D0DF718DA46AD797035 /* Pods-UICollectionViewParallaxCell_Example.release.xcconfig */, 130 | ); 131 | name = "Pods-UICollectionViewParallaxCell_Example"; 132 | path = "Target Support Files/Pods-UICollectionViewParallaxCell_Example"; 133 | sourceTree = ""; 134 | }; 135 | 5B697C1E1B78EA420D2083B228285CB0 /* Products */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | CC5EF9F44CCDD311488162ACAFF1755B /* Pods_UICollectionViewParallaxCell_Example.framework */, 139 | 73407FEB1CAC54AA4CD2C03618686565 /* Pods_UICollectionViewParallaxCell_Tests.framework */, 140 | 1FB007D950AE85ED565513E24F498B31 /* UICollectionViewParallaxCell.framework */, 141 | ); 142 | name = Products; 143 | sourceTree = ""; 144 | }; 145 | 5E0D919E635D23B70123790B8308F8EF /* iOS */ = { 146 | isa = PBXGroup; 147 | children = ( 148 | 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */, 149 | ); 150 | name = iOS; 151 | sourceTree = ""; 152 | }; 153 | 7DB346D0F39D3F0E887471402A8071AB = { 154 | isa = PBXGroup; 155 | children = ( 156 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 157 | C4C25AFB3677D8C55A044041C18CB1B7 /* Development Pods */, 158 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 159 | 5B697C1E1B78EA420D2083B228285CB0 /* Products */, 160 | 00CBE13D01577EF7EA097D15FD50004B /* Targets Support Files */, 161 | ); 162 | sourceTree = ""; 163 | }; 164 | 8D824BE90A0934C989CC9ACAA750B61E /* Pods-UICollectionViewParallaxCell_Tests */ = { 165 | isa = PBXGroup; 166 | children = ( 167 | B590A55AAD591B4747901E01D451A06A /* Info.plist */, 168 | CA4E90D2D6069AB13743CA67D417EE5D /* Pods-UICollectionViewParallaxCell_Tests.modulemap */, 169 | 545F79CB1D0C8EE42EE96C8F0CDFEA3B /* Pods-UICollectionViewParallaxCell_Tests-acknowledgements.markdown */, 170 | 2B0F199CA3616EC9FD36DDC39991BAEC /* Pods-UICollectionViewParallaxCell_Tests-acknowledgements.plist */, 171 | 901A917B88B3AE23789B39A52ED4A900 /* Pods-UICollectionViewParallaxCell_Tests-dummy.m */, 172 | EAEE33B83D86091C2FE1ECCACBD0890B /* Pods-UICollectionViewParallaxCell_Tests-frameworks.sh */, 173 | E62F66490D07AE9013F4CDB19D2B07AB /* Pods-UICollectionViewParallaxCell_Tests-resources.sh */, 174 | 340ADF6738BB6D403885C13C7CE7D468 /* Pods-UICollectionViewParallaxCell_Tests-umbrella.h */, 175 | DE06233C7C6A50091EC9D0FCF19136AF /* Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig */, 176 | 2B76E1B4BBAE5841D9D0D7CD44D21874 /* Pods-UICollectionViewParallaxCell_Tests.release.xcconfig */, 177 | ); 178 | name = "Pods-UICollectionViewParallaxCell_Tests"; 179 | path = "Target Support Files/Pods-UICollectionViewParallaxCell_Tests"; 180 | sourceTree = ""; 181 | }; 182 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 183 | isa = PBXGroup; 184 | children = ( 185 | 5E0D919E635D23B70123790B8308F8EF /* iOS */, 186 | ); 187 | name = Frameworks; 188 | sourceTree = ""; 189 | }; 190 | C132F38B50F89EB4F7CC4ED3150BB855 /* Support Files */ = { 191 | isa = PBXGroup; 192 | children = ( 193 | 961395CD206C5E7618B51C132586BD10 /* Info.plist */, 194 | F84BFFED383EE2A992D86E84E76C2A1E /* UICollectionViewParallaxCell.modulemap */, 195 | 88A6FDFC6F6AE88423B696D790747BA1 /* UICollectionViewParallaxCell.xcconfig */, 196 | 3897F122A148798C8205BEE804AC922C /* UICollectionViewParallaxCell-dummy.m */, 197 | 1EB4CD771FAAD1B4451755B90AEA0145 /* UICollectionViewParallaxCell-prefix.pch */, 198 | 6C57E7CEEB0657DC93C1BD211666E4A7 /* UICollectionViewParallaxCell-umbrella.h */, 199 | ); 200 | name = "Support Files"; 201 | path = "Example/Pods/Target Support Files/UICollectionViewParallaxCell"; 202 | sourceTree = ""; 203 | }; 204 | C4C25AFB3677D8C55A044041C18CB1B7 /* Development Pods */ = { 205 | isa = PBXGroup; 206 | children = ( 207 | FE400EBB7AC7026FF8079282843EFD84 /* UICollectionViewParallaxCell */, 208 | ); 209 | name = "Development Pods"; 210 | sourceTree = ""; 211 | }; 212 | CACE8256D3962505E7E3258DD4EAEDAD /* Pod */ = { 213 | isa = PBXGroup; 214 | children = ( 215 | 49E80E7C88EE714B409CC31D8409B23A /* LICENSE */, 216 | 6D4077A1CCAE97E19B2A3E9BD3678308 /* README.md */, 217 | F0EA3ACCF1CE25DBBFFDFBA459347F8F /* UICollectionViewParallaxCell.podspec */, 218 | ); 219 | name = Pod; 220 | sourceTree = ""; 221 | }; 222 | FE400EBB7AC7026FF8079282843EFD84 /* UICollectionViewParallaxCell */ = { 223 | isa = PBXGroup; 224 | children = ( 225 | A16E9D34717F5AC57A1848A83D3FF524 /* UICollectionViewParallaxCell.swift */, 226 | CACE8256D3962505E7E3258DD4EAEDAD /* Pod */, 227 | C132F38B50F89EB4F7CC4ED3150BB855 /* Support Files */, 228 | B262261E221616D10017B2FF /* UICollectionViewParallaxCellBACKUP.swift */, 229 | ); 230 | name = UICollectionViewParallaxCell; 231 | path = ../..; 232 | sourceTree = ""; 233 | }; 234 | /* End PBXGroup section */ 235 | 236 | /* Begin PBXHeadersBuildPhase section */ 237 | 0B45D52518101A6863C2725A79DC40EE /* Headers */ = { 238 | isa = PBXHeadersBuildPhase; 239 | buildActionMask = 2147483647; 240 | files = ( 241 | D2CAB762EB244572631868B5B54CC328 /* Pods-UICollectionViewParallaxCell_Example-umbrella.h in Headers */, 242 | ); 243 | runOnlyForDeploymentPostprocessing = 0; 244 | }; 245 | BE7DFC59214428FB3CF2B20B00CAFA79 /* Headers */ = { 246 | isa = PBXHeadersBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | 74724694486E1B8D8904F047A3A821A9 /* UICollectionViewParallaxCell-umbrella.h in Headers */, 250 | ); 251 | runOnlyForDeploymentPostprocessing = 0; 252 | }; 253 | C33C96961C68AAC6AEC21FFF7113BBF8 /* Headers */ = { 254 | isa = PBXHeadersBuildPhase; 255 | buildActionMask = 2147483647; 256 | files = ( 257 | 9F65E1D7C8BFEF912B4459E729A68497 /* Pods-UICollectionViewParallaxCell_Tests-umbrella.h in Headers */, 258 | ); 259 | runOnlyForDeploymentPostprocessing = 0; 260 | }; 261 | /* End PBXHeadersBuildPhase section */ 262 | 263 | /* Begin PBXNativeTarget section */ 264 | 12E0836C42127E57D2CD06DC85C35335 /* Pods-UICollectionViewParallaxCell_Tests */ = { 265 | isa = PBXNativeTarget; 266 | buildConfigurationList = 188F4C8B85A05CB1BD2B0CB4B79980E0 /* Build configuration list for PBXNativeTarget "Pods-UICollectionViewParallaxCell_Tests" */; 267 | buildPhases = ( 268 | 313A419CA3AB17D5C8F47E3C2258F326 /* Sources */, 269 | 8833E46DFA3D318347A097AEA203C7D5 /* Frameworks */, 270 | C33C96961C68AAC6AEC21FFF7113BBF8 /* Headers */, 271 | ); 272 | buildRules = ( 273 | ); 274 | dependencies = ( 275 | 64C31089056DF80E733FFCA62D27041E /* PBXTargetDependency */, 276 | ); 277 | name = "Pods-UICollectionViewParallaxCell_Tests"; 278 | productName = "Pods-UICollectionViewParallaxCell_Tests"; 279 | productReference = 73407FEB1CAC54AA4CD2C03618686565 /* Pods_UICollectionViewParallaxCell_Tests.framework */; 280 | productType = "com.apple.product-type.framework"; 281 | }; 282 | 30945AD0F530E5E7C9AB38980BA1DE56 /* UICollectionViewParallaxCell */ = { 283 | isa = PBXNativeTarget; 284 | buildConfigurationList = D2F6B650C365C06F61E31EC18C5F7CD8 /* Build configuration list for PBXNativeTarget "UICollectionViewParallaxCell" */; 285 | buildPhases = ( 286 | 521520838E83511F41B3C288136D7D53 /* Sources */, 287 | E96F8A8E7E1B883622903BB2CE0D446F /* Frameworks */, 288 | BE7DFC59214428FB3CF2B20B00CAFA79 /* Headers */, 289 | ); 290 | buildRules = ( 291 | ); 292 | dependencies = ( 293 | ); 294 | name = UICollectionViewParallaxCell; 295 | productName = UICollectionViewParallaxCell; 296 | productReference = 1FB007D950AE85ED565513E24F498B31 /* UICollectionViewParallaxCell.framework */; 297 | productType = "com.apple.product-type.framework"; 298 | }; 299 | 611E167ABE89536F765472B75E5D77A9 /* Pods-UICollectionViewParallaxCell_Example */ = { 300 | isa = PBXNativeTarget; 301 | buildConfigurationList = 31B5C07773C77E79E41561D63AA3907F /* Build configuration list for PBXNativeTarget "Pods-UICollectionViewParallaxCell_Example" */; 302 | buildPhases = ( 303 | 5288D7DC9C7E86EAD04E70B152CA23FD /* Sources */, 304 | A988454656C963B98A6D232F722833B6 /* Frameworks */, 305 | 0B45D52518101A6863C2725A79DC40EE /* Headers */, 306 | ); 307 | buildRules = ( 308 | ); 309 | dependencies = ( 310 | 34727B7E60EBB495AC43B984402CE53F /* PBXTargetDependency */, 311 | ); 312 | name = "Pods-UICollectionViewParallaxCell_Example"; 313 | productName = "Pods-UICollectionViewParallaxCell_Example"; 314 | productReference = CC5EF9F44CCDD311488162ACAFF1755B /* Pods_UICollectionViewParallaxCell_Example.framework */; 315 | productType = "com.apple.product-type.framework"; 316 | }; 317 | /* End PBXNativeTarget section */ 318 | 319 | /* Begin PBXProject section */ 320 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 321 | isa = PBXProject; 322 | attributes = { 323 | LastSwiftUpdateCheck = 0930; 324 | LastUpgradeCheck = 1010; 325 | TargetAttributes = { 326 | 30945AD0F530E5E7C9AB38980BA1DE56 = { 327 | LastSwiftMigration = 1010; 328 | }; 329 | 611E167ABE89536F765472B75E5D77A9 = { 330 | DevelopmentTeam = XREP97TJKH; 331 | LastSwiftMigration = 1010; 332 | }; 333 | }; 334 | }; 335 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 336 | compatibilityVersion = "Xcode 3.2"; 337 | developmentRegion = English; 338 | hasScannedForEncodings = 0; 339 | knownRegions = ( 340 | en, 341 | ); 342 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 343 | productRefGroup = 5B697C1E1B78EA420D2083B228285CB0 /* Products */; 344 | projectDirPath = ""; 345 | projectRoot = ""; 346 | targets = ( 347 | 611E167ABE89536F765472B75E5D77A9 /* Pods-UICollectionViewParallaxCell_Example */, 348 | 12E0836C42127E57D2CD06DC85C35335 /* Pods-UICollectionViewParallaxCell_Tests */, 349 | 30945AD0F530E5E7C9AB38980BA1DE56 /* UICollectionViewParallaxCell */, 350 | ); 351 | }; 352 | /* End PBXProject section */ 353 | 354 | /* Begin PBXSourcesBuildPhase section */ 355 | 313A419CA3AB17D5C8F47E3C2258F326 /* Sources */ = { 356 | isa = PBXSourcesBuildPhase; 357 | buildActionMask = 2147483647; 358 | files = ( 359 | DF4A2AC141C34DB58439EF0CCB9236C0 /* Pods-UICollectionViewParallaxCell_Tests-dummy.m in Sources */, 360 | ); 361 | runOnlyForDeploymentPostprocessing = 0; 362 | }; 363 | 521520838E83511F41B3C288136D7D53 /* Sources */ = { 364 | isa = PBXSourcesBuildPhase; 365 | buildActionMask = 2147483647; 366 | files = ( 367 | B20C6D22221620EF00EE7219 /* UICollectionViewParallaxCellBACKUP.swift in Sources */, 368 | C1BC5AC34F6E760C2A48B815972CB628 /* UICollectionViewParallaxCell.swift in Sources */, 369 | 3E5AF2AEB54EDF9744E79C6ACEC5FFB8 /* UICollectionViewParallaxCell-dummy.m in Sources */, 370 | ); 371 | runOnlyForDeploymentPostprocessing = 0; 372 | }; 373 | 5288D7DC9C7E86EAD04E70B152CA23FD /* Sources */ = { 374 | isa = PBXSourcesBuildPhase; 375 | buildActionMask = 2147483647; 376 | files = ( 377 | 082AB04238C5F5A7A343B4E8AFE7FD6D /* Pods-UICollectionViewParallaxCell_Example-dummy.m in Sources */, 378 | B262261F221616D10017B2FF /* UICollectionViewParallaxCellBACKUP.swift in Sources */, 379 | ); 380 | runOnlyForDeploymentPostprocessing = 0; 381 | }; 382 | /* End PBXSourcesBuildPhase section */ 383 | 384 | /* Begin PBXTargetDependency section */ 385 | 34727B7E60EBB495AC43B984402CE53F /* PBXTargetDependency */ = { 386 | isa = PBXTargetDependency; 387 | name = UICollectionViewParallaxCell; 388 | target = 30945AD0F530E5E7C9AB38980BA1DE56 /* UICollectionViewParallaxCell */; 389 | targetProxy = DF8D492C6D924D85E5FEB28C911B19DF /* PBXContainerItemProxy */; 390 | }; 391 | 64C31089056DF80E733FFCA62D27041E /* PBXTargetDependency */ = { 392 | isa = PBXTargetDependency; 393 | name = "Pods-UICollectionViewParallaxCell_Example"; 394 | target = 611E167ABE89536F765472B75E5D77A9 /* Pods-UICollectionViewParallaxCell_Example */; 395 | targetProxy = 5AFE8CEDF692E461721E4BFCE04079B5 /* PBXContainerItemProxy */; 396 | }; 397 | /* End PBXTargetDependency section */ 398 | 399 | /* Begin XCBuildConfiguration section */ 400 | 611880F7EED300F16C7218293A4E5CBB /* Debug */ = { 401 | isa = XCBuildConfiguration; 402 | baseConfigurationReference = 2FBD5C4BA6CAE0D8C19027F1188B97E9 /* Pods-UICollectionViewParallaxCell_Example.debug.xcconfig */; 403 | buildSettings = { 404 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 405 | CLANG_ENABLE_MODULES = YES; 406 | CODE_SIGN_IDENTITY = "iPhone Developer"; 407 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 408 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 409 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 410 | CURRENT_PROJECT_VERSION = 1; 411 | DEFINES_MODULE = YES; 412 | DEVELOPMENT_TEAM = XREP97TJKH; 413 | DYLIB_COMPATIBILITY_VERSION = 1; 414 | DYLIB_CURRENT_VERSION = 1; 415 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 416 | INFOPLIST_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Example/Info.plist"; 417 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 418 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 419 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 420 | MACH_O_TYPE = staticlib; 421 | MODULEMAP_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example.modulemap"; 422 | OTHER_LDFLAGS = ""; 423 | OTHER_LIBTOOLFLAGS = ""; 424 | PODS_ROOT = "$(SRCROOT)"; 425 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 426 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 427 | SDKROOT = iphoneos; 428 | SKIP_INSTALL = YES; 429 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 430 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 431 | SWIFT_VERSION = 4.2; 432 | TARGETED_DEVICE_FAMILY = "1,2"; 433 | VERSIONING_SYSTEM = "apple-generic"; 434 | VERSION_INFO_PREFIX = ""; 435 | }; 436 | name = Debug; 437 | }; 438 | 8B33C5230DE4A9DFA6D8F46505DD7AF7 /* Debug */ = { 439 | isa = XCBuildConfiguration; 440 | buildSettings = { 441 | ALWAYS_SEARCH_USER_PATHS = NO; 442 | CLANG_ANALYZER_NONNULL = YES; 443 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 444 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 445 | CLANG_CXX_LIBRARY = "libc++"; 446 | CLANG_ENABLE_MODULES = YES; 447 | CLANG_ENABLE_OBJC_ARC = YES; 448 | CLANG_ENABLE_OBJC_WEAK = YES; 449 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 450 | CLANG_WARN_BOOL_CONVERSION = YES; 451 | CLANG_WARN_COMMA = YES; 452 | CLANG_WARN_CONSTANT_CONVERSION = YES; 453 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 454 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 455 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 456 | CLANG_WARN_EMPTY_BODY = YES; 457 | CLANG_WARN_ENUM_CONVERSION = YES; 458 | CLANG_WARN_INFINITE_RECURSION = YES; 459 | CLANG_WARN_INT_CONVERSION = YES; 460 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 461 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 462 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 463 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 464 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 465 | CLANG_WARN_STRICT_PROTOTYPES = YES; 466 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 467 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 468 | CLANG_WARN_UNREACHABLE_CODE = YES; 469 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 470 | CODE_SIGNING_ALLOWED = NO; 471 | CODE_SIGNING_REQUIRED = NO; 472 | COPY_PHASE_STRIP = NO; 473 | DEBUG_INFORMATION_FORMAT = dwarf; 474 | ENABLE_STRICT_OBJC_MSGSEND = YES; 475 | ENABLE_TESTABILITY = YES; 476 | GCC_C_LANGUAGE_STANDARD = gnu11; 477 | GCC_DYNAMIC_NO_PIC = NO; 478 | GCC_NO_COMMON_BLOCKS = YES; 479 | GCC_OPTIMIZATION_LEVEL = 0; 480 | GCC_PREPROCESSOR_DEFINITIONS = ( 481 | "POD_CONFIGURATION_DEBUG=1", 482 | "DEBUG=1", 483 | "$(inherited)", 484 | ); 485 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 486 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 487 | GCC_WARN_UNDECLARED_SELECTOR = YES; 488 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 489 | GCC_WARN_UNUSED_FUNCTION = YES; 490 | GCC_WARN_UNUSED_VARIABLE = YES; 491 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 492 | MTL_ENABLE_DEBUG_INFO = YES; 493 | ONLY_ACTIVE_ARCH = YES; 494 | PRODUCT_NAME = "$(TARGET_NAME)"; 495 | STRIP_INSTALLED_PRODUCT = NO; 496 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 497 | SYMROOT = "${SRCROOT}/../build"; 498 | }; 499 | name = Debug; 500 | }; 501 | B42B54097A876E8A982CBF5DAA91B1AB /* Release */ = { 502 | isa = XCBuildConfiguration; 503 | buildSettings = { 504 | ALWAYS_SEARCH_USER_PATHS = NO; 505 | CLANG_ANALYZER_NONNULL = YES; 506 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 507 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 508 | CLANG_CXX_LIBRARY = "libc++"; 509 | CLANG_ENABLE_MODULES = YES; 510 | CLANG_ENABLE_OBJC_ARC = YES; 511 | CLANG_ENABLE_OBJC_WEAK = YES; 512 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 513 | CLANG_WARN_BOOL_CONVERSION = YES; 514 | CLANG_WARN_COMMA = YES; 515 | CLANG_WARN_CONSTANT_CONVERSION = YES; 516 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 517 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 518 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 519 | CLANG_WARN_EMPTY_BODY = YES; 520 | CLANG_WARN_ENUM_CONVERSION = YES; 521 | CLANG_WARN_INFINITE_RECURSION = YES; 522 | CLANG_WARN_INT_CONVERSION = YES; 523 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 524 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 525 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 526 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 527 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 528 | CLANG_WARN_STRICT_PROTOTYPES = YES; 529 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 530 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 531 | CLANG_WARN_UNREACHABLE_CODE = YES; 532 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 533 | CODE_SIGNING_ALLOWED = NO; 534 | CODE_SIGNING_REQUIRED = NO; 535 | COPY_PHASE_STRIP = NO; 536 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 537 | ENABLE_NS_ASSERTIONS = NO; 538 | ENABLE_STRICT_OBJC_MSGSEND = YES; 539 | GCC_C_LANGUAGE_STANDARD = gnu11; 540 | GCC_NO_COMMON_BLOCKS = YES; 541 | GCC_PREPROCESSOR_DEFINITIONS = ( 542 | "POD_CONFIGURATION_RELEASE=1", 543 | "$(inherited)", 544 | ); 545 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 546 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 547 | GCC_WARN_UNDECLARED_SELECTOR = YES; 548 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 549 | GCC_WARN_UNUSED_FUNCTION = YES; 550 | GCC_WARN_UNUSED_VARIABLE = YES; 551 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 552 | MTL_ENABLE_DEBUG_INFO = NO; 553 | PRODUCT_NAME = "$(TARGET_NAME)"; 554 | STRIP_INSTALLED_PRODUCT = NO; 555 | SWIFT_COMPILATION_MODE = wholemodule; 556 | SYMROOT = "${SRCROOT}/../build"; 557 | }; 558 | name = Release; 559 | }; 560 | C31090D85E3BB6DCCC1B994FB9EC3C06 /* Release */ = { 561 | isa = XCBuildConfiguration; 562 | baseConfigurationReference = 88A6FDFC6F6AE88423B696D790747BA1 /* UICollectionViewParallaxCell.xcconfig */; 563 | buildSettings = { 564 | CODE_SIGN_IDENTITY = ""; 565 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 566 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 567 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 568 | CURRENT_PROJECT_VERSION = 1; 569 | DEFINES_MODULE = YES; 570 | DYLIB_COMPATIBILITY_VERSION = 1; 571 | DYLIB_CURRENT_VERSION = 1; 572 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 573 | GCC_PREFIX_HEADER = "Target Support Files/UICollectionViewParallaxCell/UICollectionViewParallaxCell-prefix.pch"; 574 | INFOPLIST_FILE = "Target Support Files/UICollectionViewParallaxCell/Info.plist"; 575 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 576 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 577 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 578 | MODULEMAP_FILE = "Target Support Files/UICollectionViewParallaxCell/UICollectionViewParallaxCell.modulemap"; 579 | PRODUCT_MODULE_NAME = UICollectionViewParallaxCell; 580 | PRODUCT_NAME = UICollectionViewParallaxCell; 581 | SDKROOT = iphoneos; 582 | SKIP_INSTALL = YES; 583 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 584 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 585 | SWIFT_VERSION = 4.2; 586 | TARGETED_DEVICE_FAMILY = "1,2"; 587 | VALIDATE_PRODUCT = YES; 588 | VERSIONING_SYSTEM = "apple-generic"; 589 | VERSION_INFO_PREFIX = ""; 590 | }; 591 | name = Release; 592 | }; 593 | CBB69E5198E776E271AC9B69A6644F2A /* Debug */ = { 594 | isa = XCBuildConfiguration; 595 | baseConfigurationReference = 88A6FDFC6F6AE88423B696D790747BA1 /* UICollectionViewParallaxCell.xcconfig */; 596 | buildSettings = { 597 | CODE_SIGN_IDENTITY = ""; 598 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 599 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 600 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 601 | CURRENT_PROJECT_VERSION = 1; 602 | DEFINES_MODULE = YES; 603 | DYLIB_COMPATIBILITY_VERSION = 1; 604 | DYLIB_CURRENT_VERSION = 1; 605 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 606 | GCC_PREFIX_HEADER = "Target Support Files/UICollectionViewParallaxCell/UICollectionViewParallaxCell-prefix.pch"; 607 | INFOPLIST_FILE = "Target Support Files/UICollectionViewParallaxCell/Info.plist"; 608 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 609 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 610 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 611 | MODULEMAP_FILE = "Target Support Files/UICollectionViewParallaxCell/UICollectionViewParallaxCell.modulemap"; 612 | PRODUCT_MODULE_NAME = UICollectionViewParallaxCell; 613 | PRODUCT_NAME = UICollectionViewParallaxCell; 614 | SDKROOT = iphoneos; 615 | SKIP_INSTALL = YES; 616 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 617 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 618 | SWIFT_VERSION = 4.2; 619 | TARGETED_DEVICE_FAMILY = "1,2"; 620 | VERSIONING_SYSTEM = "apple-generic"; 621 | VERSION_INFO_PREFIX = ""; 622 | }; 623 | name = Debug; 624 | }; 625 | E1C4269C859E619679F420442C7F80D0 /* Debug */ = { 626 | isa = XCBuildConfiguration; 627 | baseConfigurationReference = DE06233C7C6A50091EC9D0FCF19136AF /* Pods-UICollectionViewParallaxCell_Tests.debug.xcconfig */; 628 | buildSettings = { 629 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 630 | CODE_SIGN_IDENTITY = ""; 631 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 632 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 633 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 634 | CURRENT_PROJECT_VERSION = 1; 635 | DEFINES_MODULE = YES; 636 | DYLIB_COMPATIBILITY_VERSION = 1; 637 | DYLIB_CURRENT_VERSION = 1; 638 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 639 | INFOPLIST_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Info.plist"; 640 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 641 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 642 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 643 | MACH_O_TYPE = staticlib; 644 | MODULEMAP_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests.modulemap"; 645 | OTHER_LDFLAGS = ""; 646 | OTHER_LIBTOOLFLAGS = ""; 647 | PODS_ROOT = "$(SRCROOT)"; 648 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 649 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 650 | SDKROOT = iphoneos; 651 | SKIP_INSTALL = YES; 652 | TARGETED_DEVICE_FAMILY = "1,2"; 653 | VERSIONING_SYSTEM = "apple-generic"; 654 | VERSION_INFO_PREFIX = ""; 655 | }; 656 | name = Debug; 657 | }; 658 | E3FECB77BE6D7A1884F02BB5C3F4D5B4 /* Release */ = { 659 | isa = XCBuildConfiguration; 660 | baseConfigurationReference = 2B76E1B4BBAE5841D9D0D7CD44D21874 /* Pods-UICollectionViewParallaxCell_Tests.release.xcconfig */; 661 | buildSettings = { 662 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 663 | CODE_SIGN_IDENTITY = ""; 664 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 665 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 666 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 667 | CURRENT_PROJECT_VERSION = 1; 668 | DEFINES_MODULE = YES; 669 | DYLIB_COMPATIBILITY_VERSION = 1; 670 | DYLIB_CURRENT_VERSION = 1; 671 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 672 | INFOPLIST_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Info.plist"; 673 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 674 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 675 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 676 | MACH_O_TYPE = staticlib; 677 | MODULEMAP_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Tests/Pods-UICollectionViewParallaxCell_Tests.modulemap"; 678 | OTHER_LDFLAGS = ""; 679 | OTHER_LIBTOOLFLAGS = ""; 680 | PODS_ROOT = "$(SRCROOT)"; 681 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 682 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 683 | SDKROOT = iphoneos; 684 | SKIP_INSTALL = YES; 685 | TARGETED_DEVICE_FAMILY = "1,2"; 686 | VALIDATE_PRODUCT = YES; 687 | VERSIONING_SYSTEM = "apple-generic"; 688 | VERSION_INFO_PREFIX = ""; 689 | }; 690 | name = Release; 691 | }; 692 | FE38729BB2CAFC51A5C4C71C579DF875 /* Release */ = { 693 | isa = XCBuildConfiguration; 694 | baseConfigurationReference = D5222A89EC5B5D0DF718DA46AD797035 /* Pods-UICollectionViewParallaxCell_Example.release.xcconfig */; 695 | buildSettings = { 696 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 697 | CLANG_ENABLE_MODULES = YES; 698 | CODE_SIGN_IDENTITY = ""; 699 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 700 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 701 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 702 | CURRENT_PROJECT_VERSION = 1; 703 | DEFINES_MODULE = YES; 704 | DYLIB_COMPATIBILITY_VERSION = 1; 705 | DYLIB_CURRENT_VERSION = 1; 706 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 707 | INFOPLIST_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Example/Info.plist"; 708 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 709 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 710 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 711 | MACH_O_TYPE = staticlib; 712 | MODULEMAP_FILE = "Target Support Files/Pods-UICollectionViewParallaxCell_Example/Pods-UICollectionViewParallaxCell_Example.modulemap"; 713 | OTHER_LDFLAGS = ""; 714 | OTHER_LIBTOOLFLAGS = ""; 715 | PODS_ROOT = "$(SRCROOT)"; 716 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 717 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 718 | SDKROOT = iphoneos; 719 | SKIP_INSTALL = YES; 720 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 721 | SWIFT_VERSION = 4.2; 722 | TARGETED_DEVICE_FAMILY = "1,2"; 723 | VALIDATE_PRODUCT = YES; 724 | VERSIONING_SYSTEM = "apple-generic"; 725 | VERSION_INFO_PREFIX = ""; 726 | }; 727 | name = Release; 728 | }; 729 | /* End XCBuildConfiguration section */ 730 | 731 | /* Begin XCConfigurationList section */ 732 | 188F4C8B85A05CB1BD2B0CB4B79980E0 /* Build configuration list for PBXNativeTarget "Pods-UICollectionViewParallaxCell_Tests" */ = { 733 | isa = XCConfigurationList; 734 | buildConfigurations = ( 735 | E1C4269C859E619679F420442C7F80D0 /* Debug */, 736 | E3FECB77BE6D7A1884F02BB5C3F4D5B4 /* Release */, 737 | ); 738 | defaultConfigurationIsVisible = 0; 739 | defaultConfigurationName = Release; 740 | }; 741 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 742 | isa = XCConfigurationList; 743 | buildConfigurations = ( 744 | 8B33C5230DE4A9DFA6D8F46505DD7AF7 /* Debug */, 745 | B42B54097A876E8A982CBF5DAA91B1AB /* Release */, 746 | ); 747 | defaultConfigurationIsVisible = 0; 748 | defaultConfigurationName = Release; 749 | }; 750 | 31B5C07773C77E79E41561D63AA3907F /* Build configuration list for PBXNativeTarget "Pods-UICollectionViewParallaxCell_Example" */ = { 751 | isa = XCConfigurationList; 752 | buildConfigurations = ( 753 | 611880F7EED300F16C7218293A4E5CBB /* Debug */, 754 | FE38729BB2CAFC51A5C4C71C579DF875 /* Release */, 755 | ); 756 | defaultConfigurationIsVisible = 0; 757 | defaultConfigurationName = Release; 758 | }; 759 | D2F6B650C365C06F61E31EC18C5F7CD8 /* Build configuration list for PBXNativeTarget "UICollectionViewParallaxCell" */ = { 760 | isa = XCConfigurationList; 761 | buildConfigurations = ( 762 | CBB69E5198E776E271AC9B69A6644F2A /* Debug */, 763 | C31090D85E3BB6DCCC1B994FB9EC3C06 /* Release */, 764 | ); 765 | defaultConfigurationIsVisible = 0; 766 | defaultConfigurationName = Release; 767 | }; 768 | /* End XCConfigurationList section */ 769 | }; 770 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 771 | } 772 | --------------------------------------------------------------------------------