├── AnimatableReload ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── AnimatableReload.swift ├── _Pods.xcodeproj ├── tableview.gif ├── collectionview.gif ├── Example ├── Pods │ ├── Target Support Files │ │ ├── AnimatableReload │ │ │ ├── AnimatableReload.modulemap │ │ │ ├── AnimatableReload-dummy.m │ │ │ ├── AnimatableReload-prefix.pch │ │ │ ├── AnimatableReload-umbrella.h │ │ │ ├── AnimatableReload.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-AnimatableReload_Tests │ │ │ ├── Pods-AnimatableReload_Tests-acknowledgements.markdown │ │ │ ├── Pods-AnimatableReload_Tests.modulemap │ │ │ ├── Pods-AnimatableReload_Tests-dummy.m │ │ │ ├── Pods-AnimatableReload_Tests-umbrella.h │ │ │ ├── Pods-AnimatableReload_Tests.debug.xcconfig │ │ │ ├── Pods-AnimatableReload_Tests.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-AnimatableReload_Tests-acknowledgements.plist │ │ │ ├── Pods-AnimatableReload_Tests-frameworks.sh │ │ │ └── Pods-AnimatableReload_Tests-resources.sh │ │ └── Pods-AnimatableReload_Example │ │ │ ├── Pods-AnimatableReload_Example.modulemap │ │ │ ├── Pods-AnimatableReload_Example-dummy.m │ │ │ ├── Pods-AnimatableReload_Example-umbrella.h │ │ │ ├── Pods-AnimatableReload_Example.debug.xcconfig │ │ │ ├── Pods-AnimatableReload_Example.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-AnimatableReload_Example-acknowledgements.markdown │ │ │ ├── Pods-AnimatableReload_Example-acknowledgements.plist │ │ │ ├── Pods-AnimatableReload_Example-frameworks.sh │ │ │ └── Pods-AnimatableReload_Example-resources.sh │ ├── Pods.xcodeproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── project.pbxproj │ ├── Manifest.lock │ └── Local Podspecs │ │ └── AnimatableReload.podspec.json ├── Podfile ├── AnimatableReload.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── AnimatableReload-Example.xcscheme │ └── project.pbxproj ├── AnimatableReload.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Podfile.lock ├── AnimatableReload │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.swift │ ├── SecondViewController.swift │ ├── AppDelegate.swift │ └── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard └── Tests │ ├── Info.plist │ └── Tests.swift ├── .travis.yml ├── .gitignore ├── LICENSE ├── AnimatableReload.podspec └── README.md /AnimatableReload/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AnimatableReload/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /tableview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshalrj25/AnimatableReload/HEAD/tableview.gif -------------------------------------------------------------------------------- /collectionview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshalrj25/AnimatableReload/HEAD/collectionview.gif -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatableReload/AnimatableReload.modulemap: -------------------------------------------------------------------------------- 1 | framework module AnimatableReload { 2 | umbrella header "AnimatableReload-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatableReload/AnimatableReload-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AnimatableReload : NSObject 3 | @end 4 | @implementation PodsDummy_AnimatableReload 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'AnimatableReload_Example' do 4 | pod 'AnimatableReload', :path => '../' 5 | 6 | target 'AnimatableReload_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Tests/Pods-AnimatableReload_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/AnimatableReload.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Tests/Pods-AnimatableReload_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_AnimatableReload_Tests { 2 | umbrella header "Pods-AnimatableReload_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_AnimatableReload_Example { 2 | umbrella header "Pods-AnimatableReload_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Tests/Pods-AnimatableReload_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_AnimatableReload_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_AnimatableReload_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_AnimatableReload_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_AnimatableReload_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatableReload/AnimatableReload-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/AnimatableReload.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/AnimatableReload.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - AnimatableReload (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - AnimatableReload (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | AnimatableReload: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | AnimatableReload: 0ba88a0d5d6b76c2cf82cb1a640763755a6155ed 13 | 14 | PODFILE CHECKSUM: 797e271fc1c689e899c13617d5ee60f0b472926c 15 | 16 | COCOAPODS: 1.2.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - AnimatableReload (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - AnimatableReload (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | AnimatableReload: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | AnimatableReload: 0ba88a0d5d6b76c2cf82cb1a640763755a6155ed 13 | 14 | PODFILE CHECKSUM: 797e271fc1c689e899c13617d5ee60f0b472926c 15 | 16 | COCOAPODS: 1.2.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatableReload/AnimatableReload-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 AnimatableReloadVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char AnimatableReloadVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Tests/Pods-AnimatableReload_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_AnimatableReload_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_AnimatableReload_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_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_AnimatableReload_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_AnimatableReload_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 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 -workspace Example/AnimatableReload.xcworkspace -scheme AnimatableReload-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatableReload/AnimatableReload.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/AnimatableReload 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Tests/Pods-AnimatableReload_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AnimatableReload" 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/AnimatableReload/AnimatableReload.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-AnimatableReload_Tests/Pods-AnimatableReload_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AnimatableReload" 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/AnimatableReload/AnimatableReload.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/AnimatableReload.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AnimatableReload", 3 | "version": "0.1.0", 4 | "summary": "Animate tableview and collectionview while reloading", 5 | "description": "add animations to your tableview and collectionview while reloading", 6 | "homepage": "https://github.com/harshalrj25/AnimatableReload", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "harshalrj25": "harshalrj25@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/harshalrj25/AnimatableReload.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "AnimatableReload/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /.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 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | # Pods/ 34 | -------------------------------------------------------------------------------- /Example/AnimatableReload/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AnimatableReload" 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/AnimatableReload/AnimatableReload.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "AnimatableReload" 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-AnimatableReload_Example/Pods-AnimatableReload_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AnimatableReload" 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/AnimatableReload/AnimatableReload.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "AnimatableReload" 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/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 UIKit 2 | import XCTest 3 | import AnimatableReload 4 | 5 | class Tests: XCTestCase { 6 | 7 | override func setUp() { 8 | super.setUp() 9 | // Put setup code here. This method is called before the invocation of each test method in the class. 10 | } 11 | 12 | override func tearDown() { 13 | // Put teardown code here. This method is called after the invocation of each test method in the class. 14 | super.tearDown() 15 | } 16 | 17 | func testExample() { 18 | // This is an example of a functional test case. 19 | XCTAssert(true, "Pass") 20 | } 21 | 22 | func testPerformanceExample() { 23 | // This is an example of a performance test case. 24 | self.measure() { 25 | // Put the code you want to measure the time of here. 26 | } 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatableReload/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-AnimatableReload_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-AnimatableReload_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-AnimatableReload_Tests/Pods-AnimatableReload_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) 2017 harshalrj25 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/AnimatableReload/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 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## AnimatableReload 5 | 6 | Copyright (c) 2017 harshalrj25 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 | -------------------------------------------------------------------------------- /Example/AnimatableReload/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // AnimatableReload 4 | // 5 | // Created by harshalrj25 on 04/18/2017. 6 | // Copyright (c) 2017 harshalrj25. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import AnimatableReload 11 | 12 | class ViewController: UIViewController,UITableViewDataSource { 13 | 14 | @IBOutlet weak var demoTableView: UITableView! 15 | 16 | override func viewDidLoad() { 17 | super.viewDidLoad() 18 | self.demoTableView.dataSource = self 19 | } 20 | 21 | func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 22 | return 15 23 | } 24 | 25 | func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 26 | let cell = self.demoTableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) 27 | cell.textLabel?.text = "CELL NUMBER : \(indexPath.row)" 28 | return cell 29 | } 30 | @IBAction func segmentButtonClicked(_ sender: UISegmentedControl) { 31 | switch sender.selectedSegmentIndex { 32 | case 0: 33 | AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "up") 34 | case 1: 35 | AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "down") 36 | case 2: 37 | AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "left") 38 | case 3: 39 | AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "right") 40 | default: 41 | break 42 | } 43 | } 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /AnimatableReload.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint AnimatableReload.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 http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'AnimatableReload' 11 | s.version = '0.2.0' 12 | s.summary = 'Animate tableview and collectionview while reloading' 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 = 'add animations to your tableview and collectionview while reloading' 21 | 22 | 23 | s.homepage = 'https://github.com/harshalrj25/AnimatableReload' 24 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 25 | s.license = { :type => 'MIT', :file => 'LICENSE' } 26 | s.author = { 'harshalrj25' => 'harshalrj25@gmail.com' } 27 | s.source = { :git => 'https://github.com/harshalrj25/AnimatableReload.git', :tag => s.version.to_s } 28 | # s.social_media_url = 'https://twitter.com/' 29 | 30 | s.ios.deployment_target = '10.0' 31 | 32 | s.source_files = 'AnimatableReload/Classes/**/*' 33 | 34 | # s.resource_bundles = { 35 | # 'AnimatableReload' => ['AnimatableReload/Assets/*.png'] 36 | # } 37 | 38 | # s.public_header_files = 'Pod/Classes/**/*.h' 39 | # s.frameworks = 'UIKit', 'MapKit' 40 | # s.dependency 'AFNetworking', '~> 2.3' 41 | end 42 | -------------------------------------------------------------------------------- /Example/AnimatableReload/SecondViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SecondViewController.swift 3 | // AnimatableReload 4 | // 5 | // Created by iOSDev1 on 18/04/17. 6 | // Copyright © 2017 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import AnimatableReload 11 | 12 | class SecondViewController: UIViewController,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout{ 13 | 14 | @IBOutlet weak var demoCollectionView: UICollectionView! 15 | override func viewDidLoad() { 16 | super.viewDidLoad() 17 | self.demoCollectionView.dataSource = self 18 | self.demoCollectionView.delegate = self 19 | 20 | // Do any additional setup after loading the view. 21 | } 22 | 23 | func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 24 | return 15 25 | } 26 | 27 | func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 28 | let cell = self.demoCollectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) 29 | cell.layoutIfNeeded() 30 | return cell 31 | } 32 | 33 | 34 | func collectionView(_ collectionView: UICollectionView, 35 | layout collectionViewLayout: UICollectionViewLayout, 36 | sizeForItemAt indexPath: IndexPath) -> CGSize { 37 | let numberOfColumns: CGFloat = 4 38 | let itemWidth = (self.demoCollectionView!.frame.width - (numberOfColumns - 1)) / numberOfColumns 39 | return CGSize(width:itemWidth, height:itemWidth) 40 | 41 | } 42 | 43 | 44 | @IBAction func segmentButtonClicked(_ sender: UISegmentedControl) { 45 | switch sender.selectedSegmentIndex { 46 | case 0: 47 | AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "up") 48 | case 1: 49 | AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "down") 50 | case 2: 51 | AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "left") 52 | case 3: 53 | AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "right") 54 | default: 55 | break 56 | } 57 | } 58 | 59 | } 60 | -------------------------------------------------------------------------------- /Example/AnimatableReload/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // AnimatableReload 4 | // 5 | // Created by harshalrj25 on 04/18/2017. 6 | // Copyright (c) 2017 harshalrj25. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | internal func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // 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. 24 | // 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. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // 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. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // 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. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_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) 2017 harshalrj25 <harshalrj25@gmail.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | AnimatableReload 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 | -------------------------------------------------------------------------------- /AnimatableReload/Classes/AnimatableReload.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AnimatableReload.swift 3 | // Pods 4 | // 5 | // Created by iOSDev1 on 18/04/17. 6 | // 7 | // 8 | 9 | import Foundation 10 | 11 | public class AnimatableReload{ 12 | public class func reload(tableView:UITableView,animationDirection:String) { 13 | tableView.reloadData() 14 | tableView.layoutIfNeeded() 15 | let cells = tableView.visibleCells 16 | var index = 0 17 | let tableHeight: CGFloat = tableView.bounds.size.height 18 | for i in cells { 19 | let cell: UITableViewCell = i as UITableViewCell 20 | switch animationDirection { 21 | case "up": 22 | cell.transform = CGAffineTransform(translationX: 0, y: -tableHeight) 23 | break 24 | case "down": 25 | cell.transform = CGAffineTransform(translationX: 0, y: tableHeight) 26 | break 27 | case "left": 28 | cell.transform = CGAffineTransform(translationX: tableHeight, y: 0) 29 | break 30 | case "right": 31 | cell.transform = CGAffineTransform(translationX: -tableHeight, y: 0) 32 | break 33 | default: 34 | cell.transform = CGAffineTransform(translationX: tableHeight, y: 0) 35 | break 36 | } 37 | UIView.animate(withDuration: 1.5, delay: 0.05 * Double(index), usingSpringWithDamping: 0.8, initialSpringVelocity: 0, options: .curveEaseIn, animations: { 38 | cell.transform = CGAffineTransform(translationX: 0, y: 0); 39 | }, completion: nil) 40 | index += 1 41 | } 42 | } 43 | 44 | public class func reload(collectionView:UICollectionView,animationDirection:String) { 45 | collectionView.reloadData() 46 | collectionView.layoutIfNeeded() 47 | let cells = collectionView.visibleCells 48 | var index = 0 49 | let tableHeight: CGFloat = collectionView.bounds.size.height 50 | for i in cells { 51 | let cell: UICollectionViewCell = i as UICollectionViewCell 52 | switch animationDirection { 53 | case "up": 54 | cell.transform = CGAffineTransform(translationX: 0, y: -tableHeight) 55 | break 56 | case "down": 57 | cell.transform = CGAffineTransform(translationX: 0, y: tableHeight) 58 | break 59 | case "left": 60 | cell.transform = CGAffineTransform(translationX: tableHeight, y: 0) 61 | break 62 | case "right": 63 | cell.transform = CGAffineTransform(translationX: -tableHeight, y: 0) 64 | break 65 | default: 66 | cell.transform = CGAffineTransform(translationX: tableHeight, y: 0) 67 | break 68 | } 69 | UIView.animate(withDuration: 1.5, delay: 0.05 * Double(index), usingSpringWithDamping: 0.8, initialSpringVelocity: 0, options: .curveEaseIn, animations: { 70 | cell.transform = CGAffineTransform(translationX: 0, y: 0); 71 | }, completion: nil) 72 | index += 1 73 | } 74 | } 75 | 76 | } 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AnimatableReload 2 | 3 | [![CI Status](http://img.shields.io/travis/harshalrj25/AnimatableReload.svg?style=flat)](https://travis-ci.org/harshalrj25/AnimatableReload) 4 | [![Version](https://img.shields.io/cocoapods/v/AnimatableReload.svg?style=flat)](http://cocoapods.org/pods/AnimatableReload) 5 | [![License](https://img.shields.io/cocoapods/l/AnimatableReload.svg?style=flat)](http://cocoapods.org/pods/AnimatableReload) 6 | [![Platform](https://img.shields.io/cocoapods/p/AnimatableReload.svg?style=flat)](http://cocoapods.org/pods/AnimatableReload) 7 | 8 | Animate tableview and collectionview with few lines of code. 9 | 10 | pod "AnimatableReload" 11 | 12 | import AnimatableReload 13 | 14 | AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "up") 15 | 16 | Instead of using reload method of tableview and collectionview, just use the above method to reload with animations. 17 | you can also specify the directions of animations. 18 | 19 | ![alt text](https://github.com/harshalrj25/AnimatableReload/blob/master/tableview.gif "TableView") 20 | ![alt text](https://github.com/harshalrj25/AnimatableReload/blob/master/collectionview.gif "CollectionView") 21 | 22 | 23 | 24 | ## Usage 25 | For tableview: 26 | 27 | AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "up") 28 | 29 | For collectionview: 30 | 31 | AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "up") 32 | 33 | 34 | You can animate from following directions: 35 | 36 | AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "up") 37 | AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "down") 38 | AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "left") 39 | AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "right") 40 | 41 | AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "up") 42 | AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "down") 43 | AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "left") 44 | AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "right") 45 | 46 | ## Example 47 | 48 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 49 | 50 | ## Requirements 51 | 52 | ## Installation 53 | 54 | AnimatableReload is available through [CocoaPods](http://cocoapods.org). To install 55 | it, simply add the following line to your Podfile: 56 | 57 | ```ruby 58 | pod "AnimatableReload" 59 | ``` 60 | 61 | ## Author :innocent: 62 | 63 | My email id, harshalrj25@gmail.com 64 | 65 | 66 | 67 | 78 | 79 |
68 | 69 | 70 | Harshal Jadhav 71 | 72 |

73 | 74 | 75 | 76 |

77 |
80 | 81 | ## License 82 | 83 | 84 | It's all your's :gift: 85 | -------------------------------------------------------------------------------- /Example/AnimatableReload/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Tests/Pods-AnimatableReload_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 91 | wait 92 | fi 93 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | 91 | if [[ "$CONFIGURATION" == "Debug" ]]; then 92 | install_framework "$BUILT_PRODUCTS_DIR/AnimatableReload/AnimatableReload.framework" 93 | fi 94 | if [[ "$CONFIGURATION" == "Release" ]]; then 95 | install_framework "$BUILT_PRODUCTS_DIR/AnimatableReload/AnimatableReload.framework" 96 | fi 97 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 98 | wait 99 | fi 100 | -------------------------------------------------------------------------------- /Example/AnimatableReload.xcodeproj/xcshareddata/xcschemes/AnimatableReload-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-AnimatableReload_Tests/Pods-AnimatableReload_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | 3) 22 | TARGET_DEVICE_ARGS="--target-device tv" 23 | ;; 24 | 4) 25 | TARGET_DEVICE_ARGS="--target-device watch" 26 | ;; 27 | *) 28 | TARGET_DEVICE_ARGS="--target-device mac" 29 | ;; 30 | esac 31 | 32 | install_resource() 33 | { 34 | if [[ "$1" = /* ]] ; then 35 | RESOURCE_PATH="$1" 36 | else 37 | RESOURCE_PATH="${PODS_ROOT}/$1" 38 | fi 39 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 40 | cat << EOM 41 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 42 | EOM 43 | exit 1 44 | fi 45 | case $RESOURCE_PATH in 46 | *.storyboard) 47 | 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}" 48 | 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} 49 | ;; 50 | *.xib) 51 | 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}" 52 | 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} 53 | ;; 54 | *.framework) 55 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 57 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 58 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 59 | ;; 60 | *.xcdatamodel) 61 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 62 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 63 | ;; 64 | *.xcdatamodeld) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 67 | ;; 68 | *.xcmappingmodel) 69 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 70 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 71 | ;; 72 | *.xcassets) 73 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 74 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 75 | ;; 76 | *) 77 | echo "$RESOURCE_PATH" 78 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 79 | ;; 80 | esac 81 | } 82 | 83 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 86 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 87 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | fi 89 | rm -f "$RESOURCES_TO_COPY" 90 | 91 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 92 | then 93 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 94 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 95 | while read line; do 96 | if [[ $line != "${PODS_ROOT}*" ]]; then 97 | XCASSET_FILES+=("$line") 98 | fi 99 | done <<<"$OTHER_XCASSETS" 100 | 101 | 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}" 102 | fi 103 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | 3) 22 | TARGET_DEVICE_ARGS="--target-device tv" 23 | ;; 24 | 4) 25 | TARGET_DEVICE_ARGS="--target-device watch" 26 | ;; 27 | *) 28 | TARGET_DEVICE_ARGS="--target-device mac" 29 | ;; 30 | esac 31 | 32 | install_resource() 33 | { 34 | if [[ "$1" = /* ]] ; then 35 | RESOURCE_PATH="$1" 36 | else 37 | RESOURCE_PATH="${PODS_ROOT}/$1" 38 | fi 39 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 40 | cat << EOM 41 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 42 | EOM 43 | exit 1 44 | fi 45 | case $RESOURCE_PATH in 46 | *.storyboard) 47 | 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}" 48 | 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} 49 | ;; 50 | *.xib) 51 | 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}" 52 | 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} 53 | ;; 54 | *.framework) 55 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 57 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 58 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 59 | ;; 60 | *.xcdatamodel) 61 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 62 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 63 | ;; 64 | *.xcdatamodeld) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 67 | ;; 68 | *.xcmappingmodel) 69 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 70 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 71 | ;; 72 | *.xcassets) 73 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 74 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 75 | ;; 76 | *) 77 | echo "$RESOURCE_PATH" 78 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 79 | ;; 80 | esac 81 | } 82 | 83 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 86 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 87 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | fi 89 | rm -f "$RESOURCES_TO_COPY" 90 | 91 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 92 | then 93 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 94 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 95 | while read line; do 96 | if [[ $line != "${PODS_ROOT}*" ]]; then 97 | XCASSET_FILES+=("$line") 98 | fi 99 | done <<<"$OTHER_XCASSETS" 100 | 101 | 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}" 102 | fi 103 | -------------------------------------------------------------------------------- /Example/AnimatableReload/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 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | -------------------------------------------------------------------------------- /Example/AnimatableReload.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 396D18B28C98471478F5D9A8 /* Pods_AnimatableReload_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 81E90B2E81BD536A53BF6EB5 /* Pods_AnimatableReload_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 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 17 | 93DB2541355FEF85516D8358 /* Pods_AnimatableReload_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A791F417F8DAEF5DD2EC7F6F /* Pods_AnimatableReload_Tests.framework */; }; 18 | AC00D2DE1EA60E3F0069676A /* SecondViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC00D2DD1EA60E3F0069676A /* SecondViewController.swift */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXContainerItemProxy section */ 22 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 23 | isa = PBXContainerItemProxy; 24 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 25 | proxyType = 1; 26 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 27 | remoteInfo = AnimatableReload; 28 | }; 29 | /* End PBXContainerItemProxy section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 40A89CE344868961BF7C42CD /* AnimatableReload.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = AnimatableReload.podspec; path = ../AnimatableReload.podspec; sourceTree = ""; }; 33 | 53CFB3A1F7CB0A6FA05FA987 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 34 | 607FACD01AFB9204008FA782 /* AnimatableReload_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AnimatableReload_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 36 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 37 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 38 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 39 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 40 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 41 | 607FACE51AFB9204008FA782 /* AnimatableReload_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AnimatableReload_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 43 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 44 | 6C97952EBFCE0C4EECB9356A /* Pods-AnimatableReload_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnimatableReload_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_Example.debug.xcconfig"; sourceTree = ""; }; 45 | 6EF7F465D7D1543661CFFA61 /* Pods-AnimatableReload_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnimatableReload_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_Example.release.xcconfig"; sourceTree = ""; }; 46 | 74DDE13C1A46065C88AEDF6E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 47 | 81E90B2E81BD536A53BF6EB5 /* Pods_AnimatableReload_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AnimatableReload_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 48 | 94E2C332F1BA31CC460DDFF9 /* Pods-AnimatableReload_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnimatableReload_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-AnimatableReload_Tests/Pods-AnimatableReload_Tests.debug.xcconfig"; sourceTree = ""; }; 49 | A791F417F8DAEF5DD2EC7F6F /* Pods_AnimatableReload_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AnimatableReload_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | AC00D2DD1EA60E3F0069676A /* SecondViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SecondViewController.swift; sourceTree = ""; }; 51 | C3DCCAA215470B00A44013A0 /* Pods-AnimatableReload_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnimatableReload_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-AnimatableReload_Tests/Pods-AnimatableReload_Tests.release.xcconfig"; sourceTree = ""; }; 52 | /* End PBXFileReference section */ 53 | 54 | /* Begin PBXFrameworksBuildPhase section */ 55 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 56 | isa = PBXFrameworksBuildPhase; 57 | buildActionMask = 2147483647; 58 | files = ( 59 | 396D18B28C98471478F5D9A8 /* Pods_AnimatableReload_Example.framework in Frameworks */, 60 | ); 61 | runOnlyForDeploymentPostprocessing = 0; 62 | }; 63 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 64 | isa = PBXFrameworksBuildPhase; 65 | buildActionMask = 2147483647; 66 | files = ( 67 | 93DB2541355FEF85516D8358 /* Pods_AnimatableReload_Tests.framework in Frameworks */, 68 | ); 69 | runOnlyForDeploymentPostprocessing = 0; 70 | }; 71 | /* End PBXFrameworksBuildPhase section */ 72 | 73 | /* Begin PBXGroup section */ 74 | 607FACC71AFB9204008FA782 = { 75 | isa = PBXGroup; 76 | children = ( 77 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 78 | 607FACD21AFB9204008FA782 /* Example for AnimatableReload */, 79 | 607FACE81AFB9204008FA782 /* Tests */, 80 | 607FACD11AFB9204008FA782 /* Products */, 81 | 9BB0F351D1BEC1242BF06001 /* Pods */, 82 | 7ADCCB6916BB544BB3B1A8C2 /* Frameworks */, 83 | ); 84 | sourceTree = ""; 85 | }; 86 | 607FACD11AFB9204008FA782 /* Products */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 607FACD01AFB9204008FA782 /* AnimatableReload_Example.app */, 90 | 607FACE51AFB9204008FA782 /* AnimatableReload_Tests.xctest */, 91 | ); 92 | name = Products; 93 | sourceTree = ""; 94 | }; 95 | 607FACD21AFB9204008FA782 /* Example for AnimatableReload */ = { 96 | isa = PBXGroup; 97 | children = ( 98 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 99 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 100 | AC00D2DD1EA60E3F0069676A /* SecondViewController.swift */, 101 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 102 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 103 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 104 | 607FACD31AFB9204008FA782 /* Supporting Files */, 105 | ); 106 | name = "Example for AnimatableReload"; 107 | path = AnimatableReload; 108 | sourceTree = ""; 109 | }; 110 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | 607FACD41AFB9204008FA782 /* Info.plist */, 114 | ); 115 | name = "Supporting Files"; 116 | sourceTree = ""; 117 | }; 118 | 607FACE81AFB9204008FA782 /* Tests */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 122 | 607FACE91AFB9204008FA782 /* Supporting Files */, 123 | ); 124 | path = Tests; 125 | sourceTree = ""; 126 | }; 127 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 128 | isa = PBXGroup; 129 | children = ( 130 | 607FACEA1AFB9204008FA782 /* Info.plist */, 131 | ); 132 | name = "Supporting Files"; 133 | sourceTree = ""; 134 | }; 135 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | 40A89CE344868961BF7C42CD /* AnimatableReload.podspec */, 139 | 53CFB3A1F7CB0A6FA05FA987 /* README.md */, 140 | 74DDE13C1A46065C88AEDF6E /* LICENSE */, 141 | ); 142 | name = "Podspec Metadata"; 143 | sourceTree = ""; 144 | }; 145 | 7ADCCB6916BB544BB3B1A8C2 /* Frameworks */ = { 146 | isa = PBXGroup; 147 | children = ( 148 | 81E90B2E81BD536A53BF6EB5 /* Pods_AnimatableReload_Example.framework */, 149 | A791F417F8DAEF5DD2EC7F6F /* Pods_AnimatableReload_Tests.framework */, 150 | ); 151 | name = Frameworks; 152 | sourceTree = ""; 153 | }; 154 | 9BB0F351D1BEC1242BF06001 /* Pods */ = { 155 | isa = PBXGroup; 156 | children = ( 157 | 6C97952EBFCE0C4EECB9356A /* Pods-AnimatableReload_Example.debug.xcconfig */, 158 | 6EF7F465D7D1543661CFFA61 /* Pods-AnimatableReload_Example.release.xcconfig */, 159 | 94E2C332F1BA31CC460DDFF9 /* Pods-AnimatableReload_Tests.debug.xcconfig */, 160 | C3DCCAA215470B00A44013A0 /* Pods-AnimatableReload_Tests.release.xcconfig */, 161 | ); 162 | name = Pods; 163 | sourceTree = ""; 164 | }; 165 | /* End PBXGroup section */ 166 | 167 | /* Begin PBXNativeTarget section */ 168 | 607FACCF1AFB9204008FA782 /* AnimatableReload_Example */ = { 169 | isa = PBXNativeTarget; 170 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "AnimatableReload_Example" */; 171 | buildPhases = ( 172 | 61432FF821A4FD32630DC5E0 /* [CP] Check Pods Manifest.lock */, 173 | 607FACCC1AFB9204008FA782 /* Sources */, 174 | 607FACCD1AFB9204008FA782 /* Frameworks */, 175 | 607FACCE1AFB9204008FA782 /* Resources */, 176 | 8077DF9C2CF0D89F59158865 /* [CP] Embed Pods Frameworks */, 177 | 5539629228AC283D1D612865 /* [CP] Copy Pods Resources */, 178 | ); 179 | buildRules = ( 180 | ); 181 | dependencies = ( 182 | ); 183 | name = AnimatableReload_Example; 184 | productName = AnimatableReload; 185 | productReference = 607FACD01AFB9204008FA782 /* AnimatableReload_Example.app */; 186 | productType = "com.apple.product-type.application"; 187 | }; 188 | 607FACE41AFB9204008FA782 /* AnimatableReload_Tests */ = { 189 | isa = PBXNativeTarget; 190 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "AnimatableReload_Tests" */; 191 | buildPhases = ( 192 | B88A5068048FAC3681CCFCE7 /* [CP] Check Pods Manifest.lock */, 193 | 607FACE11AFB9204008FA782 /* Sources */, 194 | 607FACE21AFB9204008FA782 /* Frameworks */, 195 | 607FACE31AFB9204008FA782 /* Resources */, 196 | A1EC1022DD3471D2B89BEF7C /* [CP] Embed Pods Frameworks */, 197 | 744CDA2F63A6FCA31916BF58 /* [CP] Copy Pods Resources */, 198 | ); 199 | buildRules = ( 200 | ); 201 | dependencies = ( 202 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 203 | ); 204 | name = AnimatableReload_Tests; 205 | productName = Tests; 206 | productReference = 607FACE51AFB9204008FA782 /* AnimatableReload_Tests.xctest */; 207 | productType = "com.apple.product-type.bundle.unit-test"; 208 | }; 209 | /* End PBXNativeTarget section */ 210 | 211 | /* Begin PBXProject section */ 212 | 607FACC81AFB9204008FA782 /* Project object */ = { 213 | isa = PBXProject; 214 | attributes = { 215 | LastSwiftUpdateCheck = 0720; 216 | LastUpgradeCheck = 1020; 217 | ORGANIZATIONNAME = CocoaPods; 218 | TargetAttributes = { 219 | 607FACCF1AFB9204008FA782 = { 220 | CreatedOnToolsVersion = 6.3.1; 221 | DevelopmentTeam = UTX8HE7KPX; 222 | LastSwiftMigration = 0820; 223 | }; 224 | 607FACE41AFB9204008FA782 = { 225 | CreatedOnToolsVersion = 6.3.1; 226 | DevelopmentTeam = UTX8HE7KPX; 227 | LastSwiftMigration = 0820; 228 | TestTargetID = 607FACCF1AFB9204008FA782; 229 | }; 230 | }; 231 | }; 232 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "AnimatableReload" */; 233 | compatibilityVersion = "Xcode 3.2"; 234 | developmentRegion = en; 235 | hasScannedForEncodings = 0; 236 | knownRegions = ( 237 | en, 238 | Base, 239 | ); 240 | mainGroup = 607FACC71AFB9204008FA782; 241 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 242 | projectDirPath = ""; 243 | projectRoot = ""; 244 | targets = ( 245 | 607FACCF1AFB9204008FA782 /* AnimatableReload_Example */, 246 | 607FACE41AFB9204008FA782 /* AnimatableReload_Tests */, 247 | ); 248 | }; 249 | /* End PBXProject section */ 250 | 251 | /* Begin PBXResourcesBuildPhase section */ 252 | 607FACCE1AFB9204008FA782 /* Resources */ = { 253 | isa = PBXResourcesBuildPhase; 254 | buildActionMask = 2147483647; 255 | files = ( 256 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 257 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 258 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 259 | ); 260 | runOnlyForDeploymentPostprocessing = 0; 261 | }; 262 | 607FACE31AFB9204008FA782 /* Resources */ = { 263 | isa = PBXResourcesBuildPhase; 264 | buildActionMask = 2147483647; 265 | files = ( 266 | ); 267 | runOnlyForDeploymentPostprocessing = 0; 268 | }; 269 | /* End PBXResourcesBuildPhase section */ 270 | 271 | /* Begin PBXShellScriptBuildPhase section */ 272 | 5539629228AC283D1D612865 /* [CP] Copy Pods Resources */ = { 273 | isa = PBXShellScriptBuildPhase; 274 | buildActionMask = 2147483647; 275 | files = ( 276 | ); 277 | inputPaths = ( 278 | ); 279 | name = "[CP] Copy Pods Resources"; 280 | outputPaths = ( 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | shellPath = /bin/sh; 284 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_Example-resources.sh\"\n"; 285 | showEnvVarsInLog = 0; 286 | }; 287 | 61432FF821A4FD32630DC5E0 /* [CP] Check Pods Manifest.lock */ = { 288 | isa = PBXShellScriptBuildPhase; 289 | buildActionMask = 2147483647; 290 | files = ( 291 | ); 292 | inputPaths = ( 293 | ); 294 | name = "[CP] Check Pods Manifest.lock"; 295 | outputPaths = ( 296 | ); 297 | runOnlyForDeploymentPostprocessing = 0; 298 | shellPath = /bin/sh; 299 | 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"; 300 | showEnvVarsInLog = 0; 301 | }; 302 | 744CDA2F63A6FCA31916BF58 /* [CP] Copy Pods Resources */ = { 303 | isa = PBXShellScriptBuildPhase; 304 | buildActionMask = 2147483647; 305 | files = ( 306 | ); 307 | inputPaths = ( 308 | ); 309 | name = "[CP] Copy Pods Resources"; 310 | outputPaths = ( 311 | ); 312 | runOnlyForDeploymentPostprocessing = 0; 313 | shellPath = /bin/sh; 314 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-AnimatableReload_Tests/Pods-AnimatableReload_Tests-resources.sh\"\n"; 315 | showEnvVarsInLog = 0; 316 | }; 317 | 8077DF9C2CF0D89F59158865 /* [CP] Embed Pods Frameworks */ = { 318 | isa = PBXShellScriptBuildPhase; 319 | buildActionMask = 2147483647; 320 | files = ( 321 | ); 322 | inputPaths = ( 323 | ); 324 | name = "[CP] Embed Pods Frameworks"; 325 | outputPaths = ( 326 | ); 327 | runOnlyForDeploymentPostprocessing = 0; 328 | shellPath = /bin/sh; 329 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_Example-frameworks.sh\"\n"; 330 | showEnvVarsInLog = 0; 331 | }; 332 | A1EC1022DD3471D2B89BEF7C /* [CP] Embed Pods Frameworks */ = { 333 | isa = PBXShellScriptBuildPhase; 334 | buildActionMask = 2147483647; 335 | files = ( 336 | ); 337 | inputPaths = ( 338 | ); 339 | name = "[CP] Embed Pods Frameworks"; 340 | outputPaths = ( 341 | ); 342 | runOnlyForDeploymentPostprocessing = 0; 343 | shellPath = /bin/sh; 344 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-AnimatableReload_Tests/Pods-AnimatableReload_Tests-frameworks.sh\"\n"; 345 | showEnvVarsInLog = 0; 346 | }; 347 | B88A5068048FAC3681CCFCE7 /* [CP] Check Pods Manifest.lock */ = { 348 | isa = PBXShellScriptBuildPhase; 349 | buildActionMask = 2147483647; 350 | files = ( 351 | ); 352 | inputPaths = ( 353 | ); 354 | name = "[CP] Check Pods Manifest.lock"; 355 | outputPaths = ( 356 | ); 357 | runOnlyForDeploymentPostprocessing = 0; 358 | shellPath = /bin/sh; 359 | 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"; 360 | showEnvVarsInLog = 0; 361 | }; 362 | /* End PBXShellScriptBuildPhase section */ 363 | 364 | /* Begin PBXSourcesBuildPhase section */ 365 | 607FACCC1AFB9204008FA782 /* Sources */ = { 366 | isa = PBXSourcesBuildPhase; 367 | buildActionMask = 2147483647; 368 | files = ( 369 | AC00D2DE1EA60E3F0069676A /* SecondViewController.swift in Sources */, 370 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 371 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 372 | ); 373 | runOnlyForDeploymentPostprocessing = 0; 374 | }; 375 | 607FACE11AFB9204008FA782 /* Sources */ = { 376 | isa = PBXSourcesBuildPhase; 377 | buildActionMask = 2147483647; 378 | files = ( 379 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 380 | ); 381 | runOnlyForDeploymentPostprocessing = 0; 382 | }; 383 | /* End PBXSourcesBuildPhase section */ 384 | 385 | /* Begin PBXTargetDependency section */ 386 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 387 | isa = PBXTargetDependency; 388 | target = 607FACCF1AFB9204008FA782 /* AnimatableReload_Example */; 389 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 390 | }; 391 | /* End PBXTargetDependency section */ 392 | 393 | /* Begin PBXVariantGroup section */ 394 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 395 | isa = PBXVariantGroup; 396 | children = ( 397 | 607FACDA1AFB9204008FA782 /* Base */, 398 | ); 399 | name = Main.storyboard; 400 | sourceTree = ""; 401 | }; 402 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 403 | isa = PBXVariantGroup; 404 | children = ( 405 | 607FACDF1AFB9204008FA782 /* Base */, 406 | ); 407 | name = LaunchScreen.xib; 408 | sourceTree = ""; 409 | }; 410 | /* End PBXVariantGroup section */ 411 | 412 | /* Begin XCBuildConfiguration section */ 413 | 607FACED1AFB9204008FA782 /* Debug */ = { 414 | isa = XCBuildConfiguration; 415 | buildSettings = { 416 | ALWAYS_SEARCH_USER_PATHS = NO; 417 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 418 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 419 | CLANG_CXX_LIBRARY = "libc++"; 420 | CLANG_ENABLE_MODULES = YES; 421 | CLANG_ENABLE_OBJC_ARC = YES; 422 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 423 | CLANG_WARN_BOOL_CONVERSION = YES; 424 | CLANG_WARN_COMMA = YES; 425 | CLANG_WARN_CONSTANT_CONVERSION = YES; 426 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 427 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 428 | CLANG_WARN_EMPTY_BODY = YES; 429 | CLANG_WARN_ENUM_CONVERSION = YES; 430 | CLANG_WARN_INFINITE_RECURSION = YES; 431 | CLANG_WARN_INT_CONVERSION = YES; 432 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 433 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 434 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 435 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 436 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 437 | CLANG_WARN_STRICT_PROTOTYPES = YES; 438 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 439 | CLANG_WARN_UNREACHABLE_CODE = YES; 440 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 441 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 442 | COPY_PHASE_STRIP = NO; 443 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 444 | ENABLE_STRICT_OBJC_MSGSEND = YES; 445 | ENABLE_TESTABILITY = YES; 446 | GCC_C_LANGUAGE_STANDARD = gnu99; 447 | GCC_DYNAMIC_NO_PIC = NO; 448 | GCC_NO_COMMON_BLOCKS = YES; 449 | GCC_OPTIMIZATION_LEVEL = 0; 450 | GCC_PREPROCESSOR_DEFINITIONS = ( 451 | "DEBUG=1", 452 | "$(inherited)", 453 | ); 454 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 455 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 456 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 457 | GCC_WARN_UNDECLARED_SELECTOR = YES; 458 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 459 | GCC_WARN_UNUSED_FUNCTION = YES; 460 | GCC_WARN_UNUSED_VARIABLE = YES; 461 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 462 | MTL_ENABLE_DEBUG_INFO = YES; 463 | ONLY_ACTIVE_ARCH = YES; 464 | SDKROOT = iphoneos; 465 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 466 | SWIFT_VERSION = 5.0; 467 | }; 468 | name = Debug; 469 | }; 470 | 607FACEE1AFB9204008FA782 /* Release */ = { 471 | isa = XCBuildConfiguration; 472 | buildSettings = { 473 | ALWAYS_SEARCH_USER_PATHS = NO; 474 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 475 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 476 | CLANG_CXX_LIBRARY = "libc++"; 477 | CLANG_ENABLE_MODULES = YES; 478 | CLANG_ENABLE_OBJC_ARC = YES; 479 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 480 | CLANG_WARN_BOOL_CONVERSION = YES; 481 | CLANG_WARN_COMMA = YES; 482 | CLANG_WARN_CONSTANT_CONVERSION = YES; 483 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 484 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 485 | CLANG_WARN_EMPTY_BODY = YES; 486 | CLANG_WARN_ENUM_CONVERSION = YES; 487 | CLANG_WARN_INFINITE_RECURSION = YES; 488 | CLANG_WARN_INT_CONVERSION = YES; 489 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 490 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 491 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 492 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 493 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 494 | CLANG_WARN_STRICT_PROTOTYPES = YES; 495 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 496 | CLANG_WARN_UNREACHABLE_CODE = YES; 497 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 498 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 499 | COPY_PHASE_STRIP = NO; 500 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 501 | ENABLE_NS_ASSERTIONS = NO; 502 | ENABLE_STRICT_OBJC_MSGSEND = YES; 503 | GCC_C_LANGUAGE_STANDARD = gnu99; 504 | GCC_NO_COMMON_BLOCKS = YES; 505 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 506 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 507 | GCC_WARN_UNDECLARED_SELECTOR = YES; 508 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 509 | GCC_WARN_UNUSED_FUNCTION = YES; 510 | GCC_WARN_UNUSED_VARIABLE = YES; 511 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 512 | MTL_ENABLE_DEBUG_INFO = NO; 513 | SDKROOT = iphoneos; 514 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 515 | SWIFT_VERSION = 5.0; 516 | VALIDATE_PRODUCT = YES; 517 | }; 518 | name = Release; 519 | }; 520 | 607FACF01AFB9204008FA782 /* Debug */ = { 521 | isa = XCBuildConfiguration; 522 | baseConfigurationReference = 6C97952EBFCE0C4EECB9356A /* Pods-AnimatableReload_Example.debug.xcconfig */; 523 | buildSettings = { 524 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 525 | DEVELOPMENT_TEAM = UTX8HE7KPX; 526 | INFOPLIST_FILE = AnimatableReload/Info.plist; 527 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 528 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 529 | MODULE_NAME = ExampleApp; 530 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 531 | PRODUCT_NAME = "$(TARGET_NAME)"; 532 | SWIFT_VERSION = 5.0; 533 | }; 534 | name = Debug; 535 | }; 536 | 607FACF11AFB9204008FA782 /* Release */ = { 537 | isa = XCBuildConfiguration; 538 | baseConfigurationReference = 6EF7F465D7D1543661CFFA61 /* Pods-AnimatableReload_Example.release.xcconfig */; 539 | buildSettings = { 540 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 541 | DEVELOPMENT_TEAM = UTX8HE7KPX; 542 | INFOPLIST_FILE = AnimatableReload/Info.plist; 543 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 544 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 545 | MODULE_NAME = ExampleApp; 546 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 547 | PRODUCT_NAME = "$(TARGET_NAME)"; 548 | SWIFT_VERSION = 5.0; 549 | }; 550 | name = Release; 551 | }; 552 | 607FACF31AFB9204008FA782 /* Debug */ = { 553 | isa = XCBuildConfiguration; 554 | baseConfigurationReference = 94E2C332F1BA31CC460DDFF9 /* Pods-AnimatableReload_Tests.debug.xcconfig */; 555 | buildSettings = { 556 | DEVELOPMENT_TEAM = UTX8HE7KPX; 557 | FRAMEWORK_SEARCH_PATHS = ( 558 | "$(SDKROOT)/Developer/Library/Frameworks", 559 | "$(inherited)", 560 | ); 561 | GCC_PREPROCESSOR_DEFINITIONS = ( 562 | "DEBUG=1", 563 | "$(inherited)", 564 | ); 565 | INFOPLIST_FILE = Tests/Info.plist; 566 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 567 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 568 | PRODUCT_NAME = "$(TARGET_NAME)"; 569 | SWIFT_VERSION = 5.0; 570 | }; 571 | name = Debug; 572 | }; 573 | 607FACF41AFB9204008FA782 /* Release */ = { 574 | isa = XCBuildConfiguration; 575 | baseConfigurationReference = C3DCCAA215470B00A44013A0 /* Pods-AnimatableReload_Tests.release.xcconfig */; 576 | buildSettings = { 577 | DEVELOPMENT_TEAM = UTX8HE7KPX; 578 | FRAMEWORK_SEARCH_PATHS = ( 579 | "$(SDKROOT)/Developer/Library/Frameworks", 580 | "$(inherited)", 581 | ); 582 | INFOPLIST_FILE = Tests/Info.plist; 583 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 584 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 585 | PRODUCT_NAME = "$(TARGET_NAME)"; 586 | SWIFT_VERSION = 5.0; 587 | }; 588 | name = Release; 589 | }; 590 | /* End XCBuildConfiguration section */ 591 | 592 | /* Begin XCConfigurationList section */ 593 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "AnimatableReload" */ = { 594 | isa = XCConfigurationList; 595 | buildConfigurations = ( 596 | 607FACED1AFB9204008FA782 /* Debug */, 597 | 607FACEE1AFB9204008FA782 /* Release */, 598 | ); 599 | defaultConfigurationIsVisible = 0; 600 | defaultConfigurationName = Release; 601 | }; 602 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "AnimatableReload_Example" */ = { 603 | isa = XCConfigurationList; 604 | buildConfigurations = ( 605 | 607FACF01AFB9204008FA782 /* Debug */, 606 | 607FACF11AFB9204008FA782 /* Release */, 607 | ); 608 | defaultConfigurationIsVisible = 0; 609 | defaultConfigurationName = Release; 610 | }; 611 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "AnimatableReload_Tests" */ = { 612 | isa = XCConfigurationList; 613 | buildConfigurations = ( 614 | 607FACF31AFB9204008FA782 /* Debug */, 615 | 607FACF41AFB9204008FA782 /* Release */, 616 | ); 617 | defaultConfigurationIsVisible = 0; 618 | defaultConfigurationName = Release; 619 | }; 620 | /* End XCConfigurationList section */ 621 | }; 622 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 623 | } 624 | -------------------------------------------------------------------------------- /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 | 029038C1D9112209760CE0097EA8A0A8 /* AnimatableReload-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D307B34231703CAF8D0F3CC70C961D5 /* AnimatableReload-dummy.m */; }; 11 | 062EBC32C4F6E500169912D63FDD7488 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 12 | 065E1CC35DCBF6DE7938F39D4FBBB056 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 13 | 08F98264F3D191F32FC5361AC7167DDF /* AnimatableReload-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EA3A425A87E4544E84A64560AE30249 /* AnimatableReload-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 413A25FC618D7806061EC0C1952B14EC /* Pods-AnimatableReload_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 40280DFD7658649F32516B38A866A2FE /* Pods-AnimatableReload_Example-dummy.m */; }; 15 | 5729506FADEC9AEC7B11004A11B11649 /* Pods-AnimatableReload_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CC7D0B1959D9FB35AFFA2796BBF27887 /* Pods-AnimatableReload_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | 78B2726F636EA4DEFFFF8634722CAA62 /* Pods-AnimatableReload_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A88B5C85C7D251FA49910253E6A8B88A /* Pods-AnimatableReload_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | CE221A58E19504473BEA1D61431A14AB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 18 | E7EEF156F40C9ED7042A97C49A1D4474 /* Pods-AnimatableReload_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BCA8099B27C822D8D7D9D2693F66837 /* Pods-AnimatableReload_Tests-dummy.m */; }; 19 | EDD1D5EAA47A886E68729612A79C2803 /* AnimatableReload.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD91B2E669F2F87F57E579DEE1AE4A9F /* AnimatableReload.swift */; }; 20 | /* End PBXBuildFile section */ 21 | 22 | /* Begin PBXContainerItemProxy section */ 23 | 215B3EDC7D0C88B3EF10EE55667EA5A4 /* PBXContainerItemProxy */ = { 24 | isa = PBXContainerItemProxy; 25 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 26 | proxyType = 1; 27 | remoteGlobalIDString = F52202D2869CF2CF85B8573E61182568; 28 | remoteInfo = AnimatableReload; 29 | }; 30 | /* End PBXContainerItemProxy section */ 31 | 32 | /* Begin PBXFileReference section */ 33 | 0221216C4CAC946D7428548F08380EDF /* AnimatableReload.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AnimatableReload.xcconfig; sourceTree = ""; }; 34 | 095D54E7F63A6E6374F91EDEC4C0778A /* Pods_AnimatableReload_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AnimatableReload_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | 13293E596D5675693D1C2C41A135BF5D /* AnimatableReload-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AnimatableReload-prefix.pch"; sourceTree = ""; }; 36 | 22E9A3213AE251C9490062166FDB3125 /* Pods-AnimatableReload_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AnimatableReload_Example.release.xcconfig"; sourceTree = ""; }; 37 | 2C04AA161FB439BE38AD6CF1CAC86F93 /* AnimatableReload.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AnimatableReload.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 38 | 3B3443F1A8066A13BC45012FF906B11E /* Pods_AnimatableReload_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AnimatableReload_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | 3C57B2C141AB78C55338DD437860BB93 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 40 | 3E5240EF814E94CE0AC7094846AAB0A4 /* Pods-AnimatableReload_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AnimatableReload_Tests-resources.sh"; sourceTree = ""; }; 41 | 40280DFD7658649F32516B38A866A2FE /* Pods-AnimatableReload_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AnimatableReload_Example-dummy.m"; sourceTree = ""; }; 42 | 443860E2797C3A7919A3855707747B4C /* Pods-AnimatableReload_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AnimatableReload_Tests.release.xcconfig"; sourceTree = ""; }; 43 | 459E7C4D0AAFF678860A8689E9E7E22B /* Pods-AnimatableReload_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-AnimatableReload_Example.modulemap"; sourceTree = ""; }; 44 | 4BCA8099B27C822D8D7D9D2693F66837 /* Pods-AnimatableReload_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AnimatableReload_Tests-dummy.m"; sourceTree = ""; }; 45 | 51D52BA735E15901B42355B56D5B6CF3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 46 | 591F3FFAD44763EDFAC669D6F0C4128D /* Pods-AnimatableReload_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AnimatableReload_Tests-acknowledgements.plist"; sourceTree = ""; }; 47 | 60DCEA8AF113102C15A8D732B4A9E0DE /* Pods-AnimatableReload_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AnimatableReload_Tests.debug.xcconfig"; sourceTree = ""; }; 48 | 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 49 | 68DCECCF480E69CE8B34265F69527D9C /* Pods-AnimatableReload_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AnimatableReload_Example-acknowledgements.plist"; sourceTree = ""; }; 50 | 6EA3A425A87E4544E84A64560AE30249 /* AnimatableReload-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AnimatableReload-umbrella.h"; sourceTree = ""; }; 51 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 52 | 9D307B34231703CAF8D0F3CC70C961D5 /* AnimatableReload-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AnimatableReload-dummy.m"; sourceTree = ""; }; 53 | 9D3CB68535D86BDE4ED10130FA1B26EF /* Pods-AnimatableReload_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AnimatableReload_Example-resources.sh"; sourceTree = ""; }; 54 | A88B5C85C7D251FA49910253E6A8B88A /* Pods-AnimatableReload_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AnimatableReload_Tests-umbrella.h"; sourceTree = ""; }; 55 | AA1ACAC95558BB3F138DC039706F4EA6 /* Pods-AnimatableReload_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AnimatableReload_Example.debug.xcconfig"; sourceTree = ""; }; 56 | AD91B2E669F2F87F57E579DEE1AE4A9F /* AnimatableReload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AnimatableReload.swift; sourceTree = ""; }; 57 | CC7D0B1959D9FB35AFFA2796BBF27887 /* Pods-AnimatableReload_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AnimatableReload_Example-umbrella.h"; sourceTree = ""; }; 58 | D55BFDC338916F370E9FD784BA8F9E16 /* Pods-AnimatableReload_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-AnimatableReload_Tests.modulemap"; sourceTree = ""; }; 59 | D6628A0F75439BA33228517F398CF8EF /* Pods-AnimatableReload_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AnimatableReload_Example-acknowledgements.markdown"; sourceTree = ""; }; 60 | DA30B8AC8BA630F201E4931051A7291A /* Pods-AnimatableReload_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AnimatableReload_Example-frameworks.sh"; sourceTree = ""; }; 61 | E0A4402AE40A0E8982D1CC45B277D8D2 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 62 | E5DA83A4A86812C3CE68C686F45A99AC /* Pods-AnimatableReload_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AnimatableReload_Tests-acknowledgements.markdown"; sourceTree = ""; }; 63 | EE42A15A1EDBFBBF5C68F57A272B4625 /* Pods-AnimatableReload_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AnimatableReload_Tests-frameworks.sh"; sourceTree = ""; }; 64 | F9EC399AC5CFFD918F936596C97523DB /* AnimatableReload.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AnimatableReload.modulemap; sourceTree = ""; }; 65 | /* End PBXFileReference section */ 66 | 67 | /* Begin PBXFrameworksBuildPhase section */ 68 | 1D5A49FB31ECCFB9367406AC333F65FD /* Frameworks */ = { 69 | isa = PBXFrameworksBuildPhase; 70 | buildActionMask = 2147483647; 71 | files = ( 72 | 065E1CC35DCBF6DE7938F39D4FBBB056 /* Foundation.framework in Frameworks */, 73 | ); 74 | runOnlyForDeploymentPostprocessing = 0; 75 | }; 76 | 29632434BADA491F42B58D0AF9237C37 /* Frameworks */ = { 77 | isa = PBXFrameworksBuildPhase; 78 | buildActionMask = 2147483647; 79 | files = ( 80 | CE221A58E19504473BEA1D61431A14AB /* Foundation.framework in Frameworks */, 81 | ); 82 | runOnlyForDeploymentPostprocessing = 0; 83 | }; 84 | 3BE8E42FC639B4B1510786A4A31E9479 /* Frameworks */ = { 85 | isa = PBXFrameworksBuildPhase; 86 | buildActionMask = 2147483647; 87 | files = ( 88 | 062EBC32C4F6E500169912D63FDD7488 /* Foundation.framework in Frameworks */, 89 | ); 90 | runOnlyForDeploymentPostprocessing = 0; 91 | }; 92 | /* End PBXFrameworksBuildPhase section */ 93 | 94 | /* Begin PBXGroup section */ 95 | 09F2BE176F0990633C3D72978F5E59FA /* Classes */ = { 96 | isa = PBXGroup; 97 | children = ( 98 | AD91B2E669F2F87F57E579DEE1AE4A9F /* AnimatableReload.swift */, 99 | ); 100 | path = Classes; 101 | sourceTree = ""; 102 | }; 103 | 336A0C828E37F7DE74A36BB1DC513874 /* AnimatableReload */ = { 104 | isa = PBXGroup; 105 | children = ( 106 | 42DD7AFF1C27F0DFB7C026CA87ADCB56 /* AnimatableReload */, 107 | 41369E7FD0119E4C36F50D635D71C0F6 /* Support Files */, 108 | ); 109 | name = AnimatableReload; 110 | path = ../..; 111 | sourceTree = ""; 112 | }; 113 | 3E6E6B20F062070DA145E320B72AAA8A /* Pods-AnimatableReload_Example */ = { 114 | isa = PBXGroup; 115 | children = ( 116 | 3C57B2C141AB78C55338DD437860BB93 /* Info.plist */, 117 | 459E7C4D0AAFF678860A8689E9E7E22B /* Pods-AnimatableReload_Example.modulemap */, 118 | D6628A0F75439BA33228517F398CF8EF /* Pods-AnimatableReload_Example-acknowledgements.markdown */, 119 | 68DCECCF480E69CE8B34265F69527D9C /* Pods-AnimatableReload_Example-acknowledgements.plist */, 120 | 40280DFD7658649F32516B38A866A2FE /* Pods-AnimatableReload_Example-dummy.m */, 121 | DA30B8AC8BA630F201E4931051A7291A /* Pods-AnimatableReload_Example-frameworks.sh */, 122 | 9D3CB68535D86BDE4ED10130FA1B26EF /* Pods-AnimatableReload_Example-resources.sh */, 123 | CC7D0B1959D9FB35AFFA2796BBF27887 /* Pods-AnimatableReload_Example-umbrella.h */, 124 | AA1ACAC95558BB3F138DC039706F4EA6 /* Pods-AnimatableReload_Example.debug.xcconfig */, 125 | 22E9A3213AE251C9490062166FDB3125 /* Pods-AnimatableReload_Example.release.xcconfig */, 126 | ); 127 | name = "Pods-AnimatableReload_Example"; 128 | path = "Target Support Files/Pods-AnimatableReload_Example"; 129 | sourceTree = ""; 130 | }; 131 | 41369E7FD0119E4C36F50D635D71C0F6 /* Support Files */ = { 132 | isa = PBXGroup; 133 | children = ( 134 | F9EC399AC5CFFD918F936596C97523DB /* AnimatableReload.modulemap */, 135 | 0221216C4CAC946D7428548F08380EDF /* AnimatableReload.xcconfig */, 136 | 9D307B34231703CAF8D0F3CC70C961D5 /* AnimatableReload-dummy.m */, 137 | 13293E596D5675693D1C2C41A135BF5D /* AnimatableReload-prefix.pch */, 138 | 6EA3A425A87E4544E84A64560AE30249 /* AnimatableReload-umbrella.h */, 139 | E0A4402AE40A0E8982D1CC45B277D8D2 /* Info.plist */, 140 | ); 141 | name = "Support Files"; 142 | path = "Example/Pods/Target Support Files/AnimatableReload"; 143 | sourceTree = ""; 144 | }; 145 | 42DD7AFF1C27F0DFB7C026CA87ADCB56 /* AnimatableReload */ = { 146 | isa = PBXGroup; 147 | children = ( 148 | 09F2BE176F0990633C3D72978F5E59FA /* Classes */, 149 | ); 150 | path = AnimatableReload; 151 | sourceTree = ""; 152 | }; 153 | 4F52C3932BFBCC947E6F1A150F3BC635 /* Products */ = { 154 | isa = PBXGroup; 155 | children = ( 156 | 2C04AA161FB439BE38AD6CF1CAC86F93 /* AnimatableReload.framework */, 157 | 095D54E7F63A6E6374F91EDEC4C0778A /* Pods_AnimatableReload_Example.framework */, 158 | 3B3443F1A8066A13BC45012FF906B11E /* Pods_AnimatableReload_Tests.framework */, 159 | ); 160 | name = Products; 161 | sourceTree = ""; 162 | }; 163 | 683A278EFB79C24068A7B6C8F372267E /* Targets Support Files */ = { 164 | isa = PBXGroup; 165 | children = ( 166 | 3E6E6B20F062070DA145E320B72AAA8A /* Pods-AnimatableReload_Example */, 167 | DC8CD48C644799988BBE150CFF5AABAF /* Pods-AnimatableReload_Tests */, 168 | ); 169 | name = "Targets Support Files"; 170 | sourceTree = ""; 171 | }; 172 | 7DB346D0F39D3F0E887471402A8071AB = { 173 | isa = PBXGroup; 174 | children = ( 175 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 176 | DC1B6217E90484906DB25F75F9591E35 /* Development Pods */, 177 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 178 | 4F52C3932BFBCC947E6F1A150F3BC635 /* Products */, 179 | 683A278EFB79C24068A7B6C8F372267E /* Targets Support Files */, 180 | ); 181 | sourceTree = ""; 182 | }; 183 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 184 | isa = PBXGroup; 185 | children = ( 186 | D35AF013A5F0BAD4F32504907A52519E /* iOS */, 187 | ); 188 | name = Frameworks; 189 | sourceTree = ""; 190 | }; 191 | D35AF013A5F0BAD4F32504907A52519E /* iOS */ = { 192 | isa = PBXGroup; 193 | children = ( 194 | 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */, 195 | ); 196 | name = iOS; 197 | sourceTree = ""; 198 | }; 199 | DC1B6217E90484906DB25F75F9591E35 /* Development Pods */ = { 200 | isa = PBXGroup; 201 | children = ( 202 | 336A0C828E37F7DE74A36BB1DC513874 /* AnimatableReload */, 203 | ); 204 | name = "Development Pods"; 205 | sourceTree = ""; 206 | }; 207 | DC8CD48C644799988BBE150CFF5AABAF /* Pods-AnimatableReload_Tests */ = { 208 | isa = PBXGroup; 209 | children = ( 210 | 51D52BA735E15901B42355B56D5B6CF3 /* Info.plist */, 211 | D55BFDC338916F370E9FD784BA8F9E16 /* Pods-AnimatableReload_Tests.modulemap */, 212 | E5DA83A4A86812C3CE68C686F45A99AC /* Pods-AnimatableReload_Tests-acknowledgements.markdown */, 213 | 591F3FFAD44763EDFAC669D6F0C4128D /* Pods-AnimatableReload_Tests-acknowledgements.plist */, 214 | 4BCA8099B27C822D8D7D9D2693F66837 /* Pods-AnimatableReload_Tests-dummy.m */, 215 | EE42A15A1EDBFBBF5C68F57A272B4625 /* Pods-AnimatableReload_Tests-frameworks.sh */, 216 | 3E5240EF814E94CE0AC7094846AAB0A4 /* Pods-AnimatableReload_Tests-resources.sh */, 217 | A88B5C85C7D251FA49910253E6A8B88A /* Pods-AnimatableReload_Tests-umbrella.h */, 218 | 60DCEA8AF113102C15A8D732B4A9E0DE /* Pods-AnimatableReload_Tests.debug.xcconfig */, 219 | 443860E2797C3A7919A3855707747B4C /* Pods-AnimatableReload_Tests.release.xcconfig */, 220 | ); 221 | name = "Pods-AnimatableReload_Tests"; 222 | path = "Target Support Files/Pods-AnimatableReload_Tests"; 223 | sourceTree = ""; 224 | }; 225 | /* End PBXGroup section */ 226 | 227 | /* Begin PBXHeadersBuildPhase section */ 228 | 3E0B1D5DCBED7273DA30532529914914 /* Headers */ = { 229 | isa = PBXHeadersBuildPhase; 230 | buildActionMask = 2147483647; 231 | files = ( 232 | 5729506FADEC9AEC7B11004A11B11649 /* Pods-AnimatableReload_Example-umbrella.h in Headers */, 233 | ); 234 | runOnlyForDeploymentPostprocessing = 0; 235 | }; 236 | 867B2438F463B0DD24C2E33A08E7B8D6 /* Headers */ = { 237 | isa = PBXHeadersBuildPhase; 238 | buildActionMask = 2147483647; 239 | files = ( 240 | 08F98264F3D191F32FC5361AC7167DDF /* AnimatableReload-umbrella.h in Headers */, 241 | ); 242 | runOnlyForDeploymentPostprocessing = 0; 243 | }; 244 | 8FAA18FEA77A7EA51DB5F137C68868BA /* Headers */ = { 245 | isa = PBXHeadersBuildPhase; 246 | buildActionMask = 2147483647; 247 | files = ( 248 | 78B2726F636EA4DEFFFF8634722CAA62 /* Pods-AnimatableReload_Tests-umbrella.h in Headers */, 249 | ); 250 | runOnlyForDeploymentPostprocessing = 0; 251 | }; 252 | /* End PBXHeadersBuildPhase section */ 253 | 254 | /* Begin PBXNativeTarget section */ 255 | 885602E64027E5E8A50A1694C599B590 /* Pods-AnimatableReload_Tests */ = { 256 | isa = PBXNativeTarget; 257 | buildConfigurationList = F21F3D74AE68AD4A1BAA8C9BA7507C1E /* Build configuration list for PBXNativeTarget "Pods-AnimatableReload_Tests" */; 258 | buildPhases = ( 259 | DB8941FC79C7F1B5B32730FB22EF5D90 /* Sources */, 260 | 3BE8E42FC639B4B1510786A4A31E9479 /* Frameworks */, 261 | 8FAA18FEA77A7EA51DB5F137C68868BA /* Headers */, 262 | ); 263 | buildRules = ( 264 | ); 265 | dependencies = ( 266 | ); 267 | name = "Pods-AnimatableReload_Tests"; 268 | productName = "Pods-AnimatableReload_Tests"; 269 | productReference = 3B3443F1A8066A13BC45012FF906B11E /* Pods_AnimatableReload_Tests.framework */; 270 | productType = "com.apple.product-type.framework"; 271 | }; 272 | C16A3E355D43E4645103CF052B188A4A /* Pods-AnimatableReload_Example */ = { 273 | isa = PBXNativeTarget; 274 | buildConfigurationList = 85442426A103B92770AB15D9B18FDCA0 /* Build configuration list for PBXNativeTarget "Pods-AnimatableReload_Example" */; 275 | buildPhases = ( 276 | D1461B41872D3B44F83D4689A19A6C90 /* Sources */, 277 | 29632434BADA491F42B58D0AF9237C37 /* Frameworks */, 278 | 3E0B1D5DCBED7273DA30532529914914 /* Headers */, 279 | ); 280 | buildRules = ( 281 | ); 282 | dependencies = ( 283 | 66F1876C062796E91EECD781EF101A65 /* PBXTargetDependency */, 284 | ); 285 | name = "Pods-AnimatableReload_Example"; 286 | productName = "Pods-AnimatableReload_Example"; 287 | productReference = 095D54E7F63A6E6374F91EDEC4C0778A /* Pods_AnimatableReload_Example.framework */; 288 | productType = "com.apple.product-type.framework"; 289 | }; 290 | F52202D2869CF2CF85B8573E61182568 /* AnimatableReload */ = { 291 | isa = PBXNativeTarget; 292 | buildConfigurationList = E092CE5C36C4F4AD481E46AF66CDB00A /* Build configuration list for PBXNativeTarget "AnimatableReload" */; 293 | buildPhases = ( 294 | C566B94EB77551A66A8561DEAC2D53CB /* Sources */, 295 | 1D5A49FB31ECCFB9367406AC333F65FD /* Frameworks */, 296 | 867B2438F463B0DD24C2E33A08E7B8D6 /* Headers */, 297 | ); 298 | buildRules = ( 299 | ); 300 | dependencies = ( 301 | ); 302 | name = AnimatableReload; 303 | productName = AnimatableReload; 304 | productReference = 2C04AA161FB439BE38AD6CF1CAC86F93 /* AnimatableReload.framework */; 305 | productType = "com.apple.product-type.framework"; 306 | }; 307 | /* End PBXNativeTarget section */ 308 | 309 | /* Begin PBXProject section */ 310 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 311 | isa = PBXProject; 312 | attributes = { 313 | LastSwiftUpdateCheck = 0830; 314 | LastUpgradeCheck = 1020; 315 | }; 316 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 317 | compatibilityVersion = "Xcode 3.2"; 318 | developmentRegion = en; 319 | hasScannedForEncodings = 0; 320 | knownRegions = ( 321 | en, 322 | Base, 323 | ); 324 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 325 | productRefGroup = 4F52C3932BFBCC947E6F1A150F3BC635 /* Products */; 326 | projectDirPath = ""; 327 | projectRoot = ""; 328 | targets = ( 329 | F52202D2869CF2CF85B8573E61182568 /* AnimatableReload */, 330 | C16A3E355D43E4645103CF052B188A4A /* Pods-AnimatableReload_Example */, 331 | 885602E64027E5E8A50A1694C599B590 /* Pods-AnimatableReload_Tests */, 332 | ); 333 | }; 334 | /* End PBXProject section */ 335 | 336 | /* Begin PBXSourcesBuildPhase section */ 337 | C566B94EB77551A66A8561DEAC2D53CB /* Sources */ = { 338 | isa = PBXSourcesBuildPhase; 339 | buildActionMask = 2147483647; 340 | files = ( 341 | 029038C1D9112209760CE0097EA8A0A8 /* AnimatableReload-dummy.m in Sources */, 342 | EDD1D5EAA47A886E68729612A79C2803 /* AnimatableReload.swift in Sources */, 343 | ); 344 | runOnlyForDeploymentPostprocessing = 0; 345 | }; 346 | D1461B41872D3B44F83D4689A19A6C90 /* Sources */ = { 347 | isa = PBXSourcesBuildPhase; 348 | buildActionMask = 2147483647; 349 | files = ( 350 | 413A25FC618D7806061EC0C1952B14EC /* Pods-AnimatableReload_Example-dummy.m in Sources */, 351 | ); 352 | runOnlyForDeploymentPostprocessing = 0; 353 | }; 354 | DB8941FC79C7F1B5B32730FB22EF5D90 /* Sources */ = { 355 | isa = PBXSourcesBuildPhase; 356 | buildActionMask = 2147483647; 357 | files = ( 358 | E7EEF156F40C9ED7042A97C49A1D4474 /* Pods-AnimatableReload_Tests-dummy.m in Sources */, 359 | ); 360 | runOnlyForDeploymentPostprocessing = 0; 361 | }; 362 | /* End PBXSourcesBuildPhase section */ 363 | 364 | /* Begin PBXTargetDependency section */ 365 | 66F1876C062796E91EECD781EF101A65 /* PBXTargetDependency */ = { 366 | isa = PBXTargetDependency; 367 | name = AnimatableReload; 368 | target = F52202D2869CF2CF85B8573E61182568 /* AnimatableReload */; 369 | targetProxy = 215B3EDC7D0C88B3EF10EE55667EA5A4 /* PBXContainerItemProxy */; 370 | }; 371 | /* End PBXTargetDependency section */ 372 | 373 | /* Begin XCBuildConfiguration section */ 374 | 3A4CBFDF57397359D1F13A8B443FC1EE /* Release */ = { 375 | isa = XCBuildConfiguration; 376 | baseConfigurationReference = 443860E2797C3A7919A3855707747B4C /* Pods-AnimatableReload_Tests.release.xcconfig */; 377 | buildSettings = { 378 | CODE_SIGN_IDENTITY = ""; 379 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 380 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 381 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 382 | CURRENT_PROJECT_VERSION = 1; 383 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 384 | DEFINES_MODULE = YES; 385 | DYLIB_COMPATIBILITY_VERSION = 1; 386 | DYLIB_CURRENT_VERSION = 1; 387 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 388 | ENABLE_STRICT_OBJC_MSGSEND = YES; 389 | GCC_NO_COMMON_BLOCKS = YES; 390 | INFOPLIST_FILE = "Target Support Files/Pods-AnimatableReload_Tests/Info.plist"; 391 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 392 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 393 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 394 | MACH_O_TYPE = staticlib; 395 | MODULEMAP_FILE = "Target Support Files/Pods-AnimatableReload_Tests/Pods-AnimatableReload_Tests.modulemap"; 396 | MTL_ENABLE_DEBUG_INFO = NO; 397 | OTHER_LDFLAGS = ""; 398 | OTHER_LIBTOOLFLAGS = ""; 399 | PODS_ROOT = "$(SRCROOT)"; 400 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 401 | PRODUCT_NAME = Pods_AnimatableReload_Tests; 402 | SDKROOT = iphoneos; 403 | SKIP_INSTALL = YES; 404 | TARGETED_DEVICE_FAMILY = "1,2"; 405 | VERSIONING_SYSTEM = "apple-generic"; 406 | VERSION_INFO_PREFIX = ""; 407 | }; 408 | name = Release; 409 | }; 410 | 4E487F173E6C9664F4E9E26B9635D23C /* Debug */ = { 411 | isa = XCBuildConfiguration; 412 | buildSettings = { 413 | ALWAYS_SEARCH_USER_PATHS = NO; 414 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 415 | CLANG_ANALYZER_NONNULL = YES; 416 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; 417 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 418 | CLANG_CXX_LIBRARY = "libc++"; 419 | CLANG_ENABLE_MODULES = YES; 420 | CLANG_ENABLE_OBJC_ARC = YES; 421 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 422 | CLANG_WARN_BOOL_CONVERSION = YES; 423 | CLANG_WARN_COMMA = YES; 424 | CLANG_WARN_CONSTANT_CONVERSION = YES; 425 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 426 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 427 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 428 | CLANG_WARN_EMPTY_BODY = YES; 429 | CLANG_WARN_ENUM_CONVERSION = YES; 430 | CLANG_WARN_INFINITE_RECURSION = YES; 431 | CLANG_WARN_INT_CONVERSION = YES; 432 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 433 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 434 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 435 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 436 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 437 | CLANG_WARN_STRICT_PROTOTYPES = YES; 438 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 439 | CLANG_WARN_UNREACHABLE_CODE = YES; 440 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 441 | CODE_SIGNING_REQUIRED = NO; 442 | COPY_PHASE_STRIP = NO; 443 | ENABLE_STRICT_OBJC_MSGSEND = YES; 444 | ENABLE_TESTABILITY = YES; 445 | GCC_C_LANGUAGE_STANDARD = gnu99; 446 | GCC_DYNAMIC_NO_PIC = NO; 447 | GCC_NO_COMMON_BLOCKS = YES; 448 | GCC_OPTIMIZATION_LEVEL = 0; 449 | GCC_PREPROCESSOR_DEFINITIONS = ( 450 | "POD_CONFIGURATION_DEBUG=1", 451 | "DEBUG=1", 452 | "$(inherited)", 453 | ); 454 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 455 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 456 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 457 | GCC_WARN_UNDECLARED_SELECTOR = YES; 458 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 459 | GCC_WARN_UNUSED_FUNCTION = YES; 460 | GCC_WARN_UNUSED_VARIABLE = YES; 461 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 462 | ONLY_ACTIVE_ARCH = YES; 463 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 464 | STRIP_INSTALLED_PRODUCT = NO; 465 | SYMROOT = "${SRCROOT}/../build"; 466 | }; 467 | name = Debug; 468 | }; 469 | 9732A127D6AAA7A7F46518903437B271 /* Release */ = { 470 | isa = XCBuildConfiguration; 471 | baseConfigurationReference = 0221216C4CAC946D7428548F08380EDF /* AnimatableReload.xcconfig */; 472 | buildSettings = { 473 | CODE_SIGN_IDENTITY = ""; 474 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 475 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 476 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 477 | CURRENT_PROJECT_VERSION = 1; 478 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 479 | DEFINES_MODULE = YES; 480 | DYLIB_COMPATIBILITY_VERSION = 1; 481 | DYLIB_CURRENT_VERSION = 1; 482 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 483 | ENABLE_STRICT_OBJC_MSGSEND = YES; 484 | GCC_NO_COMMON_BLOCKS = YES; 485 | GCC_PREFIX_HEADER = "Target Support Files/AnimatableReload/AnimatableReload-prefix.pch"; 486 | INFOPLIST_FILE = "Target Support Files/AnimatableReload/Info.plist"; 487 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 488 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 489 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 490 | MODULEMAP_FILE = "Target Support Files/AnimatableReload/AnimatableReload.modulemap"; 491 | MTL_ENABLE_DEBUG_INFO = NO; 492 | PRODUCT_NAME = AnimatableReload; 493 | SDKROOT = iphoneos; 494 | SKIP_INSTALL = YES; 495 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 496 | SWIFT_VERSION = 5.0; 497 | TARGETED_DEVICE_FAMILY = "1,2"; 498 | VERSIONING_SYSTEM = "apple-generic"; 499 | VERSION_INFO_PREFIX = ""; 500 | }; 501 | name = Release; 502 | }; 503 | AB13765B3E1AFFA6E078FAE38EF88E2E /* Debug */ = { 504 | isa = XCBuildConfiguration; 505 | baseConfigurationReference = AA1ACAC95558BB3F138DC039706F4EA6 /* Pods-AnimatableReload_Example.debug.xcconfig */; 506 | buildSettings = { 507 | CODE_SIGN_IDENTITY = ""; 508 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 509 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 510 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 511 | CURRENT_PROJECT_VERSION = 1; 512 | DEBUG_INFORMATION_FORMAT = dwarf; 513 | DEFINES_MODULE = YES; 514 | DYLIB_COMPATIBILITY_VERSION = 1; 515 | DYLIB_CURRENT_VERSION = 1; 516 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 517 | ENABLE_STRICT_OBJC_MSGSEND = YES; 518 | GCC_NO_COMMON_BLOCKS = YES; 519 | INFOPLIST_FILE = "Target Support Files/Pods-AnimatableReload_Example/Info.plist"; 520 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 521 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 522 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 523 | MACH_O_TYPE = staticlib; 524 | MODULEMAP_FILE = "Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_Example.modulemap"; 525 | MTL_ENABLE_DEBUG_INFO = YES; 526 | OTHER_LDFLAGS = ""; 527 | OTHER_LIBTOOLFLAGS = ""; 528 | PODS_ROOT = "$(SRCROOT)"; 529 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 530 | PRODUCT_NAME = Pods_AnimatableReload_Example; 531 | SDKROOT = iphoneos; 532 | SKIP_INSTALL = YES; 533 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 534 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 535 | SWIFT_VERSION = 5.0; 536 | TARGETED_DEVICE_FAMILY = "1,2"; 537 | VERSIONING_SYSTEM = "apple-generic"; 538 | VERSION_INFO_PREFIX = ""; 539 | }; 540 | name = Debug; 541 | }; 542 | BDD0139D6EB93FA375F887ABD62DAB2E /* Release */ = { 543 | isa = XCBuildConfiguration; 544 | buildSettings = { 545 | ALWAYS_SEARCH_USER_PATHS = NO; 546 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 547 | CLANG_ANALYZER_NONNULL = YES; 548 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; 549 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 550 | CLANG_CXX_LIBRARY = "libc++"; 551 | CLANG_ENABLE_MODULES = YES; 552 | CLANG_ENABLE_OBJC_ARC = YES; 553 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 554 | CLANG_WARN_BOOL_CONVERSION = YES; 555 | CLANG_WARN_COMMA = YES; 556 | CLANG_WARN_CONSTANT_CONVERSION = YES; 557 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 558 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 559 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 560 | CLANG_WARN_EMPTY_BODY = YES; 561 | CLANG_WARN_ENUM_CONVERSION = YES; 562 | CLANG_WARN_INFINITE_RECURSION = YES; 563 | CLANG_WARN_INT_CONVERSION = YES; 564 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 565 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 566 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 567 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 568 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 569 | CLANG_WARN_STRICT_PROTOTYPES = YES; 570 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 571 | CLANG_WARN_UNREACHABLE_CODE = YES; 572 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 573 | CODE_SIGNING_REQUIRED = NO; 574 | COPY_PHASE_STRIP = YES; 575 | ENABLE_NS_ASSERTIONS = NO; 576 | ENABLE_STRICT_OBJC_MSGSEND = YES; 577 | GCC_C_LANGUAGE_STANDARD = gnu99; 578 | GCC_NO_COMMON_BLOCKS = YES; 579 | GCC_PREPROCESSOR_DEFINITIONS = ( 580 | "POD_CONFIGURATION_RELEASE=1", 581 | "$(inherited)", 582 | ); 583 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 584 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 585 | GCC_WARN_UNDECLARED_SELECTOR = YES; 586 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 587 | GCC_WARN_UNUSED_FUNCTION = YES; 588 | GCC_WARN_UNUSED_VARIABLE = YES; 589 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 590 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 591 | STRIP_INSTALLED_PRODUCT = NO; 592 | SWIFT_COMPILATION_MODE = wholemodule; 593 | SYMROOT = "${SRCROOT}/../build"; 594 | VALIDATE_PRODUCT = YES; 595 | }; 596 | name = Release; 597 | }; 598 | E0521EB85703AC265D3166D81058EA3E /* Release */ = { 599 | isa = XCBuildConfiguration; 600 | baseConfigurationReference = 22E9A3213AE251C9490062166FDB3125 /* Pods-AnimatableReload_Example.release.xcconfig */; 601 | buildSettings = { 602 | CODE_SIGN_IDENTITY = ""; 603 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 604 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 605 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 606 | CURRENT_PROJECT_VERSION = 1; 607 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 608 | DEFINES_MODULE = YES; 609 | DYLIB_COMPATIBILITY_VERSION = 1; 610 | DYLIB_CURRENT_VERSION = 1; 611 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 612 | ENABLE_STRICT_OBJC_MSGSEND = YES; 613 | GCC_NO_COMMON_BLOCKS = YES; 614 | INFOPLIST_FILE = "Target Support Files/Pods-AnimatableReload_Example/Info.plist"; 615 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 616 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 617 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 618 | MACH_O_TYPE = staticlib; 619 | MODULEMAP_FILE = "Target Support Files/Pods-AnimatableReload_Example/Pods-AnimatableReload_Example.modulemap"; 620 | MTL_ENABLE_DEBUG_INFO = NO; 621 | OTHER_LDFLAGS = ""; 622 | OTHER_LIBTOOLFLAGS = ""; 623 | PODS_ROOT = "$(SRCROOT)"; 624 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 625 | PRODUCT_NAME = Pods_AnimatableReload_Example; 626 | SDKROOT = iphoneos; 627 | SKIP_INSTALL = YES; 628 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 629 | SWIFT_VERSION = 5.0; 630 | TARGETED_DEVICE_FAMILY = "1,2"; 631 | VERSIONING_SYSTEM = "apple-generic"; 632 | VERSION_INFO_PREFIX = ""; 633 | }; 634 | name = Release; 635 | }; 636 | F9153A255D6E6664ED482199B98D34CD /* Debug */ = { 637 | isa = XCBuildConfiguration; 638 | baseConfigurationReference = 60DCEA8AF113102C15A8D732B4A9E0DE /* Pods-AnimatableReload_Tests.debug.xcconfig */; 639 | buildSettings = { 640 | CODE_SIGN_IDENTITY = ""; 641 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 642 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 643 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 644 | CURRENT_PROJECT_VERSION = 1; 645 | DEBUG_INFORMATION_FORMAT = dwarf; 646 | DEFINES_MODULE = YES; 647 | DYLIB_COMPATIBILITY_VERSION = 1; 648 | DYLIB_CURRENT_VERSION = 1; 649 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 650 | ENABLE_STRICT_OBJC_MSGSEND = YES; 651 | GCC_NO_COMMON_BLOCKS = YES; 652 | INFOPLIST_FILE = "Target Support Files/Pods-AnimatableReload_Tests/Info.plist"; 653 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 654 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 655 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 656 | MACH_O_TYPE = staticlib; 657 | MODULEMAP_FILE = "Target Support Files/Pods-AnimatableReload_Tests/Pods-AnimatableReload_Tests.modulemap"; 658 | MTL_ENABLE_DEBUG_INFO = YES; 659 | OTHER_LDFLAGS = ""; 660 | OTHER_LIBTOOLFLAGS = ""; 661 | PODS_ROOT = "$(SRCROOT)"; 662 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 663 | PRODUCT_NAME = Pods_AnimatableReload_Tests; 664 | SDKROOT = iphoneos; 665 | SKIP_INSTALL = YES; 666 | TARGETED_DEVICE_FAMILY = "1,2"; 667 | VERSIONING_SYSTEM = "apple-generic"; 668 | VERSION_INFO_PREFIX = ""; 669 | }; 670 | name = Debug; 671 | }; 672 | FF600C4D956868244C1FE2F9076B9DE9 /* Debug */ = { 673 | isa = XCBuildConfiguration; 674 | baseConfigurationReference = 0221216C4CAC946D7428548F08380EDF /* AnimatableReload.xcconfig */; 675 | buildSettings = { 676 | CODE_SIGN_IDENTITY = ""; 677 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 678 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 679 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 680 | CURRENT_PROJECT_VERSION = 1; 681 | DEBUG_INFORMATION_FORMAT = dwarf; 682 | DEFINES_MODULE = YES; 683 | DYLIB_COMPATIBILITY_VERSION = 1; 684 | DYLIB_CURRENT_VERSION = 1; 685 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 686 | ENABLE_STRICT_OBJC_MSGSEND = YES; 687 | GCC_NO_COMMON_BLOCKS = YES; 688 | GCC_PREFIX_HEADER = "Target Support Files/AnimatableReload/AnimatableReload-prefix.pch"; 689 | INFOPLIST_FILE = "Target Support Files/AnimatableReload/Info.plist"; 690 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 691 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 692 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 693 | MODULEMAP_FILE = "Target Support Files/AnimatableReload/AnimatableReload.modulemap"; 694 | MTL_ENABLE_DEBUG_INFO = YES; 695 | PRODUCT_NAME = AnimatableReload; 696 | SDKROOT = iphoneos; 697 | SKIP_INSTALL = YES; 698 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 699 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 700 | SWIFT_VERSION = 5.0; 701 | TARGETED_DEVICE_FAMILY = "1,2"; 702 | VERSIONING_SYSTEM = "apple-generic"; 703 | VERSION_INFO_PREFIX = ""; 704 | }; 705 | name = Debug; 706 | }; 707 | /* End XCBuildConfiguration section */ 708 | 709 | /* Begin XCConfigurationList section */ 710 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 711 | isa = XCConfigurationList; 712 | buildConfigurations = ( 713 | 4E487F173E6C9664F4E9E26B9635D23C /* Debug */, 714 | BDD0139D6EB93FA375F887ABD62DAB2E /* Release */, 715 | ); 716 | defaultConfigurationIsVisible = 0; 717 | defaultConfigurationName = Release; 718 | }; 719 | 85442426A103B92770AB15D9B18FDCA0 /* Build configuration list for PBXNativeTarget "Pods-AnimatableReload_Example" */ = { 720 | isa = XCConfigurationList; 721 | buildConfigurations = ( 722 | AB13765B3E1AFFA6E078FAE38EF88E2E /* Debug */, 723 | E0521EB85703AC265D3166D81058EA3E /* Release */, 724 | ); 725 | defaultConfigurationIsVisible = 0; 726 | defaultConfigurationName = Release; 727 | }; 728 | E092CE5C36C4F4AD481E46AF66CDB00A /* Build configuration list for PBXNativeTarget "AnimatableReload" */ = { 729 | isa = XCConfigurationList; 730 | buildConfigurations = ( 731 | FF600C4D956868244C1FE2F9076B9DE9 /* Debug */, 732 | 9732A127D6AAA7A7F46518903437B271 /* Release */, 733 | ); 734 | defaultConfigurationIsVisible = 0; 735 | defaultConfigurationName = Release; 736 | }; 737 | F21F3D74AE68AD4A1BAA8C9BA7507C1E /* Build configuration list for PBXNativeTarget "Pods-AnimatableReload_Tests" */ = { 738 | isa = XCConfigurationList; 739 | buildConfigurations = ( 740 | F9153A255D6E6664ED482199B98D34CD /* Debug */, 741 | 3A4CBFDF57397359D1F13A8B443FC1EE /* Release */, 742 | ); 743 | defaultConfigurationIsVisible = 0; 744 | defaultConfigurationName = Release; 745 | }; 746 | /* End XCConfigurationList section */ 747 | }; 748 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 749 | } 750 | --------------------------------------------------------------------------------