From b507ac8abf23484abd34d0d7a8d71193f8e39643 Mon Sep 17 00:00:00 2001 From: phoebus Date: Wed, 15 Jul 2015 09:42:55 +0800 Subject: [PATCH] reset project --- BXSafeTransition.podspec | 33 + .../project.pbxproj | 614 ++++++++++ .../contents.xcworkspacedata | 7 + .../BXSafeTransition-Example.xcscheme | 98 ++ .../contents.xcworkspacedata | 10 + Example/BXSafeTransition/BXAppDelegate.h | 15 + Example/BXSafeTransition/BXAppDelegate.m | 46 + .../BXSafeTransition-Info.plist | 47 + .../BXSafeTransition-Prefix.pch | 16 + Example/BXSafeTransition/BXViewController.h | 13 + Example/BXSafeTransition/BXViewController.m | 29 + .../AppIcon.appiconset/Contents.json | 53 + .../LaunchImage.launchimage/Contents.json | 51 + Example/BXSafeTransition/Main.storyboard | 27 + .../en.lproj/InfoPlist.strings | 2 + Example/BXSafeTransition/main.m | 17 + Example/Podfile | 12 + Example/Podfile.lock | 14 + .../BXSafeTransition.podspec.json | 25 + Example/Pods/Manifest.lock | 14 + Example/Pods/Pods.xcodeproj/project.pbxproj | 1008 +++++++++++++++++ ...BXSafeTransition-BXSafeTransition.xcscheme | 59 + ...ansition_Example-BXSafeTransition.xcscheme | 59 + ...BXSafeTransition-BXSafeTransition.xcscheme | 59 + ...Transition_Tests-BXSafeTransition.xcscheme | 59 + .../Info.plist | 26 + ..._Example-BXSafeTransition-Private.xcconfig | 9 + ...ransition_Example-BXSafeTransition-dummy.m | 5 + ...sition_Example-BXSafeTransition-prefix.pch | 5 + ...sition_Example-BXSafeTransition-umbrella.h | 6 + ...nsition_Example-BXSafeTransition.modulemap | 6 + ...ansition_Example-BXSafeTransition.xcconfig | 0 .../Pods-BXSafeTransition_Example/Info.plist | 26 + ...ansition_Example-acknowledgements.markdown | 26 + ...eTransition_Example-acknowledgements.plist | 56 + .../Pods-BXSafeTransition_Example-dummy.m | 5 + ...ods-BXSafeTransition_Example-environment.h | 14 + ...ods-BXSafeTransition_Example-frameworks.sh | 55 + ...Pods-BXSafeTransition_Example-resources.sh | 93 ++ .../Pods-BXSafeTransition_Example-umbrella.h | 6 + ...ds-BXSafeTransition_Example.debug.xcconfig | 8 + .../Pods-BXSafeTransition_Example.modulemap | 6 + ...-BXSafeTransition_Example.release.xcconfig | 8 + .../Info.plist | 26 + ...on_Tests-BXSafeTransition-Private.xcconfig | 9 + ...eTransition_Tests-BXSafeTransition-dummy.m | 5 + ...ansition_Tests-BXSafeTransition-prefix.pch | 5 + ...ansition_Tests-BXSafeTransition-umbrella.h | 6 + ...ransition_Tests-BXSafeTransition.modulemap | 6 + ...Transition_Tests-BXSafeTransition.xcconfig | 0 .../Pods-BXSafeTransition_Tests/Info.plist | 26 + ...Transition_Tests-acknowledgements.markdown | 26 + ...afeTransition_Tests-acknowledgements.plist | 56 + .../Pods-BXSafeTransition_Tests-dummy.m | 5 + .../Pods-BXSafeTransition_Tests-environment.h | 14 + .../Pods-BXSafeTransition_Tests-frameworks.sh | 55 + .../Pods-BXSafeTransition_Tests-resources.sh | 93 ++ .../Pods-BXSafeTransition_Tests-umbrella.h | 6 + ...Pods-BXSafeTransition_Tests.debug.xcconfig | 8 + .../Pods-BXSafeTransition_Tests.modulemap | 6 + ...ds-BXSafeTransition_Tests.release.xcconfig | 8 + Example/Tests/Tests-Info.plist | 22 + Example/Tests/Tests-Prefix.pch | 7 + Example/Tests/Tests.m | 35 + Example/Tests/en.lproj/InfoPlist.strings | 2 + LICENSE | 19 + Pod/Assets/.gitkeep | 0 Pod/Classes/.gitkeep | 0 .../UINavigationController+BXSafeTransition.h | 13 + .../UINavigationController+BXSafeTransition.m | 220 ++++ README.md | 29 + _Pods.xcodeproj | 1 + 72 files changed, 3455 insertions(+) create mode 100644 BXSafeTransition.podspec create mode 100644 Example/BXSafeTransition.xcodeproj/project.pbxproj create mode 100644 Example/BXSafeTransition.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 Example/BXSafeTransition.xcodeproj/xcshareddata/xcschemes/BXSafeTransition-Example.xcscheme create mode 100644 Example/BXSafeTransition.xcworkspace/contents.xcworkspacedata create mode 100644 Example/BXSafeTransition/BXAppDelegate.h create mode 100644 Example/BXSafeTransition/BXAppDelegate.m create mode 100644 Example/BXSafeTransition/BXSafeTransition-Info.plist create mode 100644 Example/BXSafeTransition/BXSafeTransition-Prefix.pch create mode 100644 Example/BXSafeTransition/BXViewController.h create mode 100644 Example/BXSafeTransition/BXViewController.m create mode 100644 Example/BXSafeTransition/Images.xcassets/AppIcon.appiconset/Contents.json create mode 100644 Example/BXSafeTransition/Images.xcassets/LaunchImage.launchimage/Contents.json create mode 100644 Example/BXSafeTransition/Main.storyboard create mode 100644 Example/BXSafeTransition/en.lproj/InfoPlist.strings create mode 100644 Example/BXSafeTransition/main.m create mode 100644 Example/Podfile create mode 100644 Example/Podfile.lock create mode 100644 Example/Pods/Local Podspecs/BXSafeTransition.podspec.json create mode 100644 Example/Pods/Manifest.lock create mode 100644 Example/Pods/Pods.xcodeproj/project.pbxproj create mode 100644 Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Example-BXSafeTransition-BXSafeTransition.xcscheme create mode 100644 Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Example-BXSafeTransition.xcscheme create mode 100644 Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Tests-BXSafeTransition-BXSafeTransition.xcscheme create mode 100644 Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Tests-BXSafeTransition.xcscheme create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Info.plist create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-Private.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-dummy.m create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-prefix.pch create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-umbrella.h create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition.modulemap create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Info.plist create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-acknowledgements.markdown create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-acknowledgements.plist create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-dummy.m create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-environment.h create mode 100755 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-frameworks.sh create mode 100755 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-resources.sh create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-umbrella.h create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.debug.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.modulemap create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.release.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Info.plist create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-Private.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-dummy.m create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-prefix.pch create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-umbrella.h create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition.modulemap create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Info.plist create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-acknowledgements.markdown create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-acknowledgements.plist create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-dummy.m create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-environment.h create mode 100755 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-frameworks.sh create mode 100755 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-resources.sh create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-umbrella.h create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.debug.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.modulemap create mode 100644 Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.release.xcconfig create mode 100644 Example/Tests/Tests-Info.plist create mode 100644 Example/Tests/Tests-Prefix.pch create mode 100644 Example/Tests/Tests.m create mode 100644 Example/Tests/en.lproj/InfoPlist.strings create mode 100644 LICENSE create mode 100644 Pod/Assets/.gitkeep create mode 100644 Pod/Classes/.gitkeep create mode 100644 Pod/Classes/UINavigationController+BXSafeTransition.h create mode 100644 Pod/Classes/UINavigationController+BXSafeTransition.m create mode 100644 README.md create mode 120000 _Pods.xcodeproj diff --git a/BXSafeTransition.podspec b/BXSafeTransition.podspec new file mode 100644 index 0000000..7a5f9d3 --- /dev/null +++ b/BXSafeTransition.podspec @@ -0,0 +1,33 @@ +# +# Be sure to run `pod lib lint BXSafeTransition.podspec' to ensure this is a +# valid spec and remove all comments before submitting the spec. +# +# Any lines starting with a # are optional, but encouraged +# +# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html +# + +Pod::Spec.new do |s| + s.name = "BXSafeTransition" + s.version = "1.1.0" + s.summary = "It's a 'Can't add self as subview' resolvent" + s.description = "It's a 'Can't add self as subview' resolvent. Join us:zhengxingok@gmail.com" + s.homepage = "https://github.com/iException/BXSafeTransition" + # s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2" + s.license = 'MIT' + s.author = { "phoebus" => "zhengxingok@gmail.com" } + s.source = { :git => "https://github.com/iException/BXSafeTransition.git", :tag => s.version.to_s } + # s.social_media_url = 'https://twitter.com/' + + s.platform = :ios, '7.0' + s.requires_arc = true + + s.source_files = 'Pod/Classes/**/*' + s.resource_bundles = { + 'BXSafeTransition' => ['Pod/Assets/*.png'] + } + + # s.public_header_files = 'Pod/Classes/**/*.h' + # s.frameworks = 'UIKit', 'MapKit' + # s.dependency 'AFNetworking', '~> 2.3' +end diff --git a/Example/BXSafeTransition.xcodeproj/project.pbxproj b/Example/BXSafeTransition.xcodeproj/project.pbxproj new file mode 100644 index 0000000..4b53158 --- /dev/null +++ b/Example/BXSafeTransition.xcodeproj/project.pbxproj @@ -0,0 +1,614 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 5A12D73214D7B2EED799F1FC /* Pods_BXSafeTransition_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AD5EDDEC0C2B07FAC531A0F0 /* Pods_BXSafeTransition_Example.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; + 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; + 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; + 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; + 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; + 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; + 6003F59E195388D20070C39A /* BXAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* BXAppDelegate.m */; }; + 6003F5A7195388D20070C39A /* BXViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* BXViewController.m */; }; + 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; + 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; + 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; + 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; + 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; + 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; + 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; }; + D7F35ED324154A73573341D2 /* Pods_BXSafeTransition_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DFEFA32A158AF71A6790101 /* Pods_BXSafeTransition_Tests.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 6003F582195388D10070C39A /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6003F589195388D20070C39A; + remoteInfo = BXSafeTransition; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 1841E5B5C0DB3039907F40A9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; + 1C2C41FDC9BAAF35CBEF7261 /* Pods-BXSafeTransition_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BXSafeTransition_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.debug.xcconfig"; sourceTree = ""; }; + 1DFEFA32A158AF71A6790101 /* Pods_BXSafeTransition_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BXSafeTransition_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 2AD9F7CFF75910447C97F0FD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; + 33CFBF4E4AF4463CBC282B7D /* Pods-BXSafeTransition_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BXSafeTransition_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.release.xcconfig"; sourceTree = ""; }; + 6003F58A195388D20070C39A /* BXSafeTransition_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BXSafeTransition_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; + 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; + 6003F595195388D20070C39A /* BXSafeTransition-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "BXSafeTransition-Info.plist"; sourceTree = ""; }; + 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; + 6003F59B195388D20070C39A /* BXSafeTransition-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "BXSafeTransition-Prefix.pch"; sourceTree = ""; }; + 6003F59C195388D20070C39A /* BXAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BXAppDelegate.h; sourceTree = ""; }; + 6003F59D195388D20070C39A /* BXAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BXAppDelegate.m; sourceTree = ""; }; + 6003F5A5195388D20070C39A /* BXViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BXViewController.h; sourceTree = ""; }; + 6003F5A6195388D20070C39A /* BXViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BXViewController.m; sourceTree = ""; }; + 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; + 6003F5AE195388D20070C39A /* BXSafeTransition_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BXSafeTransition_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; + 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; + 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = ""; }; + AD5EDDEC0C2B07FAC531A0F0 /* Pods_BXSafeTransition_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BXSafeTransition_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B4587B29F8B8AE6BD4CA494E /* Pods-BXSafeTransition_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BXSafeTransition_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.release.xcconfig"; sourceTree = ""; }; + BF35304F6B2500F72426D20A /* Pods-BXSafeTransition_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BXSafeTransition_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.debug.xcconfig"; sourceTree = ""; }; + E79CB334B0DAAF4C0A71D5FF /* BXSafeTransition.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = BXSafeTransition.podspec; path = ../BXSafeTransition.podspec; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 6003F587195388D20070C39A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, + 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, + 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, + 5A12D73214D7B2EED799F1FC /* Pods_BXSafeTransition_Example.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6003F5AB195388D20070C39A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, + 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, + 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, + D7F35ED324154A73573341D2 /* Pods_BXSafeTransition_Tests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 6003F581195388D10070C39A = { + isa = PBXGroup; + children = ( + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, + 6003F593195388D20070C39A /* Example for BXSafeTransition */, + 6003F5B5195388D20070C39A /* Tests */, + 6003F58C195388D20070C39A /* Frameworks */, + 6003F58B195388D20070C39A /* Products */, + DF0A9CAD4A50ECDCDAA124D5 /* Pods */, + ); + sourceTree = ""; + }; + 6003F58B195388D20070C39A /* Products */ = { + isa = PBXGroup; + children = ( + 6003F58A195388D20070C39A /* BXSafeTransition_Example.app */, + 6003F5AE195388D20070C39A /* BXSafeTransition_Tests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 6003F58C195388D20070C39A /* Frameworks */ = { + isa = PBXGroup; + children = ( + 6003F58D195388D20070C39A /* Foundation.framework */, + 6003F58F195388D20070C39A /* CoreGraphics.framework */, + 6003F591195388D20070C39A /* UIKit.framework */, + 6003F5AF195388D20070C39A /* XCTest.framework */, + AD5EDDEC0C2B07FAC531A0F0 /* Pods_BXSafeTransition_Example.framework */, + 1DFEFA32A158AF71A6790101 /* Pods_BXSafeTransition_Tests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 6003F593195388D20070C39A /* Example for BXSafeTransition */ = { + isa = PBXGroup; + children = ( + 6003F59C195388D20070C39A /* BXAppDelegate.h */, + 6003F59D195388D20070C39A /* BXAppDelegate.m */, + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */, + 6003F5A5195388D20070C39A /* BXViewController.h */, + 6003F5A6195388D20070C39A /* BXViewController.m */, + 6003F5A8195388D20070C39A /* Images.xcassets */, + 6003F594195388D20070C39A /* Supporting Files */, + ); + name = "Example for BXSafeTransition"; + path = BXSafeTransition; + sourceTree = ""; + }; + 6003F594195388D20070C39A /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 6003F595195388D20070C39A /* BXSafeTransition-Info.plist */, + 6003F596195388D20070C39A /* InfoPlist.strings */, + 6003F599195388D20070C39A /* main.m */, + 6003F59B195388D20070C39A /* BXSafeTransition-Prefix.pch */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 6003F5B5195388D20070C39A /* Tests */ = { + isa = PBXGroup; + children = ( + 6003F5BB195388D20070C39A /* Tests.m */, + 6003F5B6195388D20070C39A /* Supporting Files */, + ); + path = Tests; + sourceTree = ""; + }; + 6003F5B6195388D20070C39A /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 6003F5B7195388D20070C39A /* Tests-Info.plist */, + 6003F5B8195388D20070C39A /* InfoPlist.strings */, + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { + isa = PBXGroup; + children = ( + E79CB334B0DAAF4C0A71D5FF /* BXSafeTransition.podspec */, + 1841E5B5C0DB3039907F40A9 /* README.md */, + 2AD9F7CFF75910447C97F0FD /* LICENSE */, + ); + name = "Podspec Metadata"; + sourceTree = ""; + }; + DF0A9CAD4A50ECDCDAA124D5 /* Pods */ = { + isa = PBXGroup; + children = ( + 1C2C41FDC9BAAF35CBEF7261 /* Pods-BXSafeTransition_Example.debug.xcconfig */, + 33CFBF4E4AF4463CBC282B7D /* Pods-BXSafeTransition_Example.release.xcconfig */, + BF35304F6B2500F72426D20A /* Pods-BXSafeTransition_Tests.debug.xcconfig */, + B4587B29F8B8AE6BD4CA494E /* Pods-BXSafeTransition_Tests.release.xcconfig */, + ); + name = Pods; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 6003F589195388D20070C39A /* BXSafeTransition_Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "BXSafeTransition_Example" */; + buildPhases = ( + 2F9D0C67D9366C5F8CF84F9A /* Check Pods Manifest.lock */, + 6003F586195388D20070C39A /* Sources */, + 6003F587195388D20070C39A /* Frameworks */, + 6003F588195388D20070C39A /* Resources */, + 0166C9031A2D1CA68BE8F77B /* Embed Pods Frameworks */, + 29C3F5D6E92DF555974ED18F /* Copy Pods Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = BXSafeTransition_Example; + productName = BXSafeTransition; + productReference = 6003F58A195388D20070C39A /* BXSafeTransition_Example.app */; + productType = "com.apple.product-type.application"; + }; + 6003F5AD195388D20070C39A /* BXSafeTransition_Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "BXSafeTransition_Tests" */; + buildPhases = ( + CAA35901968F97B443E1B426 /* Check Pods Manifest.lock */, + 6003F5AA195388D20070C39A /* Sources */, + 6003F5AB195388D20070C39A /* Frameworks */, + 6003F5AC195388D20070C39A /* Resources */, + 64B5383B30A5D6604767CA60 /* Embed Pods Frameworks */, + 3B018A5751FFEC73D200082C /* Copy Pods Resources */, + ); + buildRules = ( + ); + dependencies = ( + 6003F5B4195388D20070C39A /* PBXTargetDependency */, + ); + name = BXSafeTransition_Tests; + productName = BXSafeTransitionTests; + productReference = 6003F5AE195388D20070C39A /* BXSafeTransition_Tests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 6003F582195388D10070C39A /* Project object */ = { + isa = PBXProject; + attributes = { + CLASSPREFIX = BX; + LastUpgradeCheck = 0510; + ORGANIZATIONNAME = phoebus; + TargetAttributes = { + 6003F5AD195388D20070C39A = { + TestTargetID = 6003F589195388D20070C39A; + }; + }; + }; + buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "BXSafeTransition" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 6003F581195388D10070C39A; + productRefGroup = 6003F58B195388D20070C39A /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 6003F589195388D20070C39A /* BXSafeTransition_Example */, + 6003F5AD195388D20070C39A /* BXSafeTransition_Tests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 6003F588195388D20070C39A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */, + 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, + 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6003F5AC195388D20070C39A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 0166C9031A2D1CA68BE8F77B /* Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Embed Pods Frameworks"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 29C3F5D6E92DF555974ED18F /* Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 2F9D0C67D9366C5F8CF84F9A /* Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; + 3B018A5751FFEC73D200082C /* Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 64B5383B30A5D6604767CA60 /* Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Embed Pods Frameworks"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + CAA35901968F97B443E1B426 /* Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 6003F586195388D20070C39A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6003F59E195388D20070C39A /* BXAppDelegate.m in Sources */, + 6003F5A7195388D20070C39A /* BXViewController.m in Sources */, + 6003F59A195388D20070C39A /* main.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6003F5AA195388D20070C39A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6003F5BC195388D20070C39A /* Tests.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 6003F589195388D20070C39A /* BXSafeTransition_Example */; + targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 6003F596195388D20070C39A /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 6003F597195388D20070C39A /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 6003F5B9195388D20070C39A /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 6003F5BD195388D20070C39A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 7.1; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 6003F5BE195388D20070C39A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = YES; + ENABLE_NS_ASSERTIONS = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 7.1; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 6003F5C0195388D20070C39A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1C2C41FDC9BAAF35CBEF7261 /* Pods-BXSafeTransition_Example.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "BXSafeTransition/BXSafeTransition-Prefix.pch"; + INFOPLIST_FILE = "BXSafeTransition/BXSafeTransition-Info.plist"; + MODULE_NAME = ExampleApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + 6003F5C1195388D20070C39A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33CFBF4E4AF4463CBC282B7D /* Pods-BXSafeTransition_Example.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "BXSafeTransition/BXSafeTransition-Prefix.pch"; + INFOPLIST_FILE = "BXSafeTransition/BXSafeTransition-Info.plist"; + MODULE_NAME = ExampleApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + 6003F5C3195388D20070C39A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BF35304F6B2500F72426D20A /* Pods-BXSafeTransition_Tests.debug.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + FRAMEWORK_SEARCH_PATHS = ( + "$(SDKROOT)/Developer/Library/Frameworks", + "$(inherited)", + "$(DEVELOPER_FRAMEWORKS_DIR)", + ); + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + INFOPLIST_FILE = "Tests/Tests-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BXSafeTransition_Example.app/BXSafeTransition_Example"; + WRAPPER_EXTENSION = xctest; + }; + name = Debug; + }; + 6003F5C4195388D20070C39A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B4587B29F8B8AE6BD4CA494E /* Pods-BXSafeTransition_Tests.release.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + FRAMEWORK_SEARCH_PATHS = ( + "$(SDKROOT)/Developer/Library/Frameworks", + "$(inherited)", + "$(DEVELOPER_FRAMEWORKS_DIR)", + ); + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; + INFOPLIST_FILE = "Tests/Tests-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BXSafeTransition_Example.app/BXSafeTransition_Example"; + WRAPPER_EXTENSION = xctest; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 6003F585195388D10070C39A /* Build configuration list for PBXProject "BXSafeTransition" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6003F5BD195388D20070C39A /* Debug */, + 6003F5BE195388D20070C39A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "BXSafeTransition_Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6003F5C0195388D20070C39A /* Debug */, + 6003F5C1195388D20070C39A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "BXSafeTransition_Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6003F5C3195388D20070C39A /* Debug */, + 6003F5C4195388D20070C39A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 6003F582195388D10070C39A /* Project object */; +} diff --git a/Example/BXSafeTransition.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Example/BXSafeTransition.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..04d89de --- /dev/null +++ b/Example/BXSafeTransition.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Example/BXSafeTransition.xcodeproj/xcshareddata/xcschemes/BXSafeTransition-Example.xcscheme b/Example/BXSafeTransition.xcodeproj/xcshareddata/xcschemes/BXSafeTransition-Example.xcscheme new file mode 100644 index 0000000..800b855 --- /dev/null +++ b/Example/BXSafeTransition.xcodeproj/xcshareddata/xcschemes/BXSafeTransition-Example.xcscheme @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/BXSafeTransition.xcworkspace/contents.xcworkspacedata b/Example/BXSafeTransition.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..82e725d --- /dev/null +++ b/Example/BXSafeTransition.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/Example/BXSafeTransition/BXAppDelegate.h b/Example/BXSafeTransition/BXAppDelegate.h new file mode 100644 index 0000000..7d9a530 --- /dev/null +++ b/Example/BXSafeTransition/BXAppDelegate.h @@ -0,0 +1,15 @@ +// +// BXAppDelegate.h +// BXSafeTransition +// +// Created by phoebus on 07/15/2015. +// Copyright (c) 2015 phoebus. All rights reserved. +// + +@import UIKit; + +@interface BXAppDelegate : UIResponder + +@property (strong, nonatomic) UIWindow *window; + +@end diff --git a/Example/BXSafeTransition/BXAppDelegate.m b/Example/BXSafeTransition/BXAppDelegate.m new file mode 100644 index 0000000..34642da --- /dev/null +++ b/Example/BXSafeTransition/BXAppDelegate.m @@ -0,0 +1,46 @@ +// +// BXAppDelegate.m +// BXSafeTransition +// +// Created by phoebus on 07/15/2015. +// Copyright (c) 2015 phoebus. All rights reserved. +// + +#import "BXAppDelegate.h" + +@implementation BXAppDelegate + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions +{ + // Override point for customization after application launch. + return YES; +} + +- (void)applicationWillResignActive:(UIApplication *)application +{ + // 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. + // 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. +} + +- (void)applicationDidEnterBackground:(UIApplication *)application +{ + // 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. + // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. +} + +- (void)applicationWillEnterForeground:(UIApplication *)application +{ + // 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. +} + +- (void)applicationDidBecomeActive:(UIApplication *)application +{ + // 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. +} + +- (void)applicationWillTerminate:(UIApplication *)application +{ + // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. +} + +@end diff --git a/Example/BXSafeTransition/BXSafeTransition-Info.plist b/Example/BXSafeTransition/BXSafeTransition-Info.plist new file mode 100644 index 0000000..d2cd320 --- /dev/null +++ b/Example/BXSafeTransition/BXSafeTransition-Info.plist @@ -0,0 +1,47 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleDisplayName + ${PRODUCT_NAME} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + LSRequiresIPhoneOS + + UIMainStoryboardFile + Main + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/Example/BXSafeTransition/BXSafeTransition-Prefix.pch b/Example/BXSafeTransition/BXSafeTransition-Prefix.pch new file mode 100644 index 0000000..7825372 --- /dev/null +++ b/Example/BXSafeTransition/BXSafeTransition-Prefix.pch @@ -0,0 +1,16 @@ +// +// Prefix header +// +// The contents of this file are implicitly included at the beginning of every source file. +// + +#import + +#ifndef __IPHONE_5_0 +#warning "This project uses features only available in iOS SDK 5.0 and later." +#endif + +#ifdef __OBJC__ + @import UIKit; + @import Foundation; +#endif diff --git a/Example/BXSafeTransition/BXViewController.h b/Example/BXSafeTransition/BXViewController.h new file mode 100644 index 0000000..09bf5ee --- /dev/null +++ b/Example/BXSafeTransition/BXViewController.h @@ -0,0 +1,13 @@ +// +// BXViewController.h +// BXSafeTransition +// +// Created by phoebus on 07/15/2015. +// Copyright (c) 2015 phoebus. All rights reserved. +// + +@import UIKit; + +@interface BXViewController : UIViewController + +@end diff --git a/Example/BXSafeTransition/BXViewController.m b/Example/BXSafeTransition/BXViewController.m new file mode 100644 index 0000000..f900013 --- /dev/null +++ b/Example/BXSafeTransition/BXViewController.m @@ -0,0 +1,29 @@ +// +// BXViewController.m +// BXSafeTransition +// +// Created by phoebus on 07/15/2015. +// Copyright (c) 2015 phoebus. All rights reserved. +// + +#import "BXViewController.h" + +@interface BXViewController () + +@end + +@implementation BXViewController + +- (void)viewDidLoad +{ + [super viewDidLoad]; + // Do any additional setup after loading the view, typically from a nib. +} + +- (void)didReceiveMemoryWarning +{ + [super didReceiveMemoryWarning]; + // Dispose of any resources that can be recreated. +} + +@end diff --git a/Example/BXSafeTransition/Images.xcassets/AppIcon.appiconset/Contents.json b/Example/BXSafeTransition/Images.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..f697f61 --- /dev/null +++ b/Example/BXSafeTransition/Images.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,53 @@ +{ + "images" : [ + { + "idiom" : "iphone", + "size" : "29x29", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "40x40", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "60x60", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "29x29", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "29x29", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "40x40", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "40x40", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "76x76", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "76x76", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/Example/BXSafeTransition/Images.xcassets/LaunchImage.launchimage/Contents.json b/Example/BXSafeTransition/Images.xcassets/LaunchImage.launchimage/Contents.json new file mode 100644 index 0000000..4458b40 --- /dev/null +++ b/Example/BXSafeTransition/Images.xcassets/LaunchImage.launchimage/Contents.json @@ -0,0 +1,51 @@ +{ + "images" : [ + { + "orientation" : "portrait", + "idiom" : "iphone", + "extent" : "full-screen", + "minimum-system-version" : "7.0", + "scale" : "2x" + }, + { + "orientation" : "portrait", + "idiom" : "iphone", + "subtype" : "retina4", + "extent" : "full-screen", + "minimum-system-version" : "7.0", + "scale" : "2x" + }, + { + "orientation" : "portrait", + "idiom" : "ipad", + "extent" : "full-screen", + "minimum-system-version" : "7.0", + "scale" : "1x" + }, + { + "orientation" : "landscape", + "idiom" : "ipad", + "extent" : "full-screen", + "minimum-system-version" : "7.0", + "scale" : "1x" + }, + { + "orientation" : "portrait", + "idiom" : "ipad", + "extent" : "full-screen", + "minimum-system-version" : "7.0", + "scale" : "2x" + }, + { + "orientation" : "landscape", + "idiom" : "ipad", + "extent" : "full-screen", + "minimum-system-version" : "7.0", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/Example/BXSafeTransition/Main.storyboard b/Example/BXSafeTransition/Main.storyboard new file mode 100644 index 0000000..1277614 --- /dev/null +++ b/Example/BXSafeTransition/Main.storyboard @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/BXSafeTransition/en.lproj/InfoPlist.strings b/Example/BXSafeTransition/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..477b28f --- /dev/null +++ b/Example/BXSafeTransition/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ + diff --git a/Example/BXSafeTransition/main.m b/Example/BXSafeTransition/main.m new file mode 100644 index 0000000..25055e0 --- /dev/null +++ b/Example/BXSafeTransition/main.m @@ -0,0 +1,17 @@ +// +// main.m +// BXSafeTransition +// +// Created by phoebus on 07/15/2015. +// Copyright (c) 2015 phoebus. All rights reserved. +// + +@import UIKit; +#import "BXAppDelegate.h" + +int main(int argc, char * argv[]) +{ + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([BXAppDelegate class])); + } +} diff --git a/Example/Podfile b/Example/Podfile new file mode 100644 index 0000000..e2516d0 --- /dev/null +++ b/Example/Podfile @@ -0,0 +1,12 @@ +source 'https://github.com/CocoaPods/Specs.git' +use_frameworks! + +target 'BXSafeTransition_Example', :exclusive => true do + pod "BXSafeTransition", :path => "../" +end + +target 'BXSafeTransition_Tests', :exclusive => true do + pod "BXSafeTransition", :path => "../" + + +end diff --git a/Example/Podfile.lock b/Example/Podfile.lock new file mode 100644 index 0000000..3c04c9d --- /dev/null +++ b/Example/Podfile.lock @@ -0,0 +1,14 @@ +PODS: + - BXSafeTransition (0.1.0) + +DEPENDENCIES: + - BXSafeTransition (from `../`) + +EXTERNAL SOURCES: + BXSafeTransition: + :path: ../ + +SPEC CHECKSUMS: + BXSafeTransition: a8c94fcf966994ea4429970da08f7d23a260100d + +COCOAPODS: 0.37.2 diff --git a/Example/Pods/Local Podspecs/BXSafeTransition.podspec.json b/Example/Pods/Local Podspecs/BXSafeTransition.podspec.json new file mode 100644 index 0000000..ed5d540 --- /dev/null +++ b/Example/Pods/Local Podspecs/BXSafeTransition.podspec.json @@ -0,0 +1,25 @@ +{ + "name": "BXSafeTransition", + "version": "0.1.0", + "summary": "A short description of BXSafeTransition.", + "description": " An optional longer description of BXSafeTransition\n\n * Markdown format.\n * Don't worry about the indent, we strip it!\n", + "homepage": "https://github.com//BXSafeTransition", + "license": "MIT", + "authors": { + "phoebus": "shaozhengxingok@126.com" + }, + "source": { + "git": "https://github.com//BXSafeTransition.git", + "tag": "0.1.0" + }, + "platforms": { + "ios": "7.0" + }, + "requires_arc": true, + "source_files": "Pod/Classes/**/*", + "resource_bundles": { + "BXSafeTransition": [ + "Pod/Assets/*.png" + ] + } +} diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock new file mode 100644 index 0000000..3c04c9d --- /dev/null +++ b/Example/Pods/Manifest.lock @@ -0,0 +1,14 @@ +PODS: + - BXSafeTransition (0.1.0) + +DEPENDENCIES: + - BXSafeTransition (from `../`) + +EXTERNAL SOURCES: + BXSafeTransition: + :path: ../ + +SPEC CHECKSUMS: + BXSafeTransition: a8c94fcf966994ea4429970da08f7d23a260100d + +COCOAPODS: 0.37.2 diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj new file mode 100644 index 0000000..da1ee23 --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -0,0 +1,1008 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 080F5C6DC9884B6A41067052 /* BXSafeTransition.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 0E4FBA3D07A5764D949EA483 /* BXSafeTransition.bundle */; }; + 09487E2BA471002DA3F10252 /* Pods-BXSafeTransition_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF21DA63F4EDD74AB89F25BE /* Pods-BXSafeTransition_Tests-dummy.m */; }; + 55555926A77ACC042B1463DF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 919BFEB6633E4E636EC84575 /* Foundation.framework */; }; + 5E5AF010C2B8A2ABA82DF1F8 /* Pods-BXSafeTransition_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 33568DA3EA92CBEB4E93B199 /* Pods-BXSafeTransition_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 690860071B55ED110063C8CF /* UINavigationController+BXSafeTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 690860051B55ED110063C8CF /* UINavigationController+BXSafeTransition.h */; }; + 690860081B55ED110063C8CF /* UINavigationController+BXSafeTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 690860061B55ED110063C8CF /* UINavigationController+BXSafeTransition.m */; }; + 716A0A9068691524A75F914E /* Pods-BXSafeTransition_Tests-BXSafeTransition-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CF08EB338724B0D4394C8BB5 /* Pods-BXSafeTransition_Tests-BXSafeTransition-dummy.m */; }; + 7F266D1E7FA2EADF0C3F0F3B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 919BFEB6633E4E636EC84575 /* Foundation.framework */; }; + 9C171B74BE2596CE19B30608 /* BXSafeTransition.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 44E4CEE3F8499BFFFE1597B7 /* BXSafeTransition.bundle */; }; + A6AE7CD90FB3A6D60A557941 /* Pods-BXSafeTransition_Example-BXSafeTransition-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F5B05C4C77734E7CD23B04D /* Pods-BXSafeTransition_Example-BXSafeTransition-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AB486D6AAD390EEC27BFB895 /* Pods-BXSafeTransition_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D33BF00256C7E222FD263DF /* Pods-BXSafeTransition_Example-dummy.m */; }; + B2B4CB2DD6E5477692435B85 /* Pods-BXSafeTransition_Tests-BXSafeTransition-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 755167F1FF4B76F44FE232AD /* Pods-BXSafeTransition_Tests-BXSafeTransition-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C7F4E299A91C313E94B0A043 /* Pods-BXSafeTransition_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 72E3A6F9093FC6A2A2200BB3 /* Pods-BXSafeTransition_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D8E9AC880374F5FE34A80A9E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 919BFEB6633E4E636EC84575 /* Foundation.framework */; }; + E58C784F4CB92CDE2CAE1823 /* Pods-BXSafeTransition_Example-BXSafeTransition-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DB82E3AFC1B4720A169F0B5 /* Pods-BXSafeTransition_Example-BXSafeTransition-dummy.m */; }; + E5CE474351C8874940B7C69A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 919BFEB6633E4E636EC84575 /* Foundation.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 3999CAD70BFFDF713DD0B48B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 3F46E8044D017D96ADE99D85 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 98E3D0773788CF089073D6AD; + remoteInfo = "Pods-BXSafeTransition_Example-BXSafeTransition"; + }; + 3BD5E370777E72A6F996EE4F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 3F46E8044D017D96ADE99D85 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8068C5D1DA2F88B79EE5D49B; + remoteInfo = "Pods-BXSafeTransition_Tests-BXSafeTransition"; + }; + 5F07A5AA7487CC601DCE57EE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 3F46E8044D017D96ADE99D85 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4A2E35D1A4BA50A05DBB79B0; + remoteInfo = "Pods-BXSafeTransition_Tests-BXSafeTransition-BXSafeTransition"; + }; + C97484A397B0E90F49FD4F38 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 3F46E8044D017D96ADE99D85 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B273D136B5F7501ADBC46960; + remoteInfo = "Pods-BXSafeTransition_Example-BXSafeTransition-BXSafeTransition"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 08D758B6C71AD42EA49A09F5 /* Pods-BXSafeTransition_Example-BXSafeTransition-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BXSafeTransition_Example-BXSafeTransition-Private.xcconfig"; sourceTree = ""; }; + 0BDF8EB437F5134C24F4E467 /* Pods-BXSafeTransition_Example-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BXSafeTransition_Example-environment.h"; sourceTree = ""; }; + 0C1C3E327124A26C711EE5ED /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0E003B944C07FCD103E3CD72 /* Pods-BXSafeTransition_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BXSafeTransition_Tests-resources.sh"; sourceTree = ""; }; + 0E4FBA3D07A5764D949EA483 /* BXSafeTransition.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BXSafeTransition.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F695F437C6C82029DE322F2 /* Pods_BXSafeTransition_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BXSafeTransition_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 1281B7B9B40ED34DAF037F68 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 145C5CD522523C5F458236E0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../Pods-BXSafeTransition_Tests-BXSafeTransition/Info.plist"; sourceTree = ""; }; + 1563E9F83DE257EDDFFA73A9 /* Pods-BXSafeTransition_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-BXSafeTransition_Example.modulemap"; sourceTree = ""; }; + 24339E0DEFCE64C22BA0EB25 /* Pods-BXSafeTransition_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BXSafeTransition_Example-resources.sh"; sourceTree = ""; }; + 2BB9221E86F7203D236C0CA5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 33568DA3EA92CBEB4E93B199 /* Pods-BXSafeTransition_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BXSafeTransition_Example-umbrella.h"; sourceTree = ""; }; + 44E4CEE3F8499BFFFE1597B7 /* BXSafeTransition.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BXSafeTransition.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 5462F14850E3515AB4DAD37F /* Pods-BXSafeTransition_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-BXSafeTransition_Tests.modulemap"; sourceTree = ""; }; + 54E71BB73D4EE1F041FE8B50 /* Pods-BXSafeTransition_Tests-BXSafeTransition-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BXSafeTransition_Tests-BXSafeTransition-Private.xcconfig"; path = "../Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-Private.xcconfig"; sourceTree = ""; }; + 56215894D3D2595C584494E2 /* Pods-BXSafeTransition_Tests-BXSafeTransition-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Pods-BXSafeTransition_Tests-BXSafeTransition-prefix.pch"; path = "../Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-prefix.pch"; sourceTree = ""; }; + 5F3B2B93F6E6A100D43DF90C /* Pods-BXSafeTransition_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-BXSafeTransition_Example-acknowledgements.plist"; sourceTree = ""; }; + 5F5B05C4C77734E7CD23B04D /* Pods-BXSafeTransition_Example-BXSafeTransition-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BXSafeTransition_Example-BXSafeTransition-umbrella.h"; sourceTree = ""; }; + 63C4AD6C9556F2550D8FC2FD /* Pods-BXSafeTransition_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-BXSafeTransition_Example-acknowledgements.markdown"; sourceTree = ""; }; + 690860051B55ED110063C8CF /* UINavigationController+BXSafeTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+BXSafeTransition.h"; sourceTree = ""; }; + 690860061B55ED110063C8CF /* UINavigationController+BXSafeTransition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+BXSafeTransition.m"; sourceTree = ""; }; + 6D13584410DD4A796B43068C /* Pods-BXSafeTransition_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BXSafeTransition_Example.release.xcconfig"; sourceTree = ""; }; + 6DB82E3AFC1B4720A169F0B5 /* Pods-BXSafeTransition_Example-BXSafeTransition-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-BXSafeTransition_Example-BXSafeTransition-dummy.m"; sourceTree = ""; }; + 72E3A6F9093FC6A2A2200BB3 /* Pods-BXSafeTransition_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BXSafeTransition_Tests-umbrella.h"; sourceTree = ""; }; + 755167F1FF4B76F44FE232AD /* Pods-BXSafeTransition_Tests-BXSafeTransition-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Pods-BXSafeTransition_Tests-BXSafeTransition-umbrella.h"; path = "../Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-umbrella.h"; sourceTree = ""; }; + 78B1C3450AFD083DDA9E978A /* Pods_BXSafeTransition_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BXSafeTransition_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 7AFB052FC19513A1A1A185BA /* BXSafeTransition.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BXSafeTransition.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 87E1880AA627141F6FBF27D1 /* Pods-BXSafeTransition_Example-BXSafeTransition.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BXSafeTransition_Example-BXSafeTransition.xcconfig"; sourceTree = ""; }; + 88E28B8D4F78D21E5767FC55 /* Pods-BXSafeTransition_Example-BXSafeTransition-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BXSafeTransition_Example-BXSafeTransition-prefix.pch"; sourceTree = ""; }; + 8F65ACF296F80F2BCFC3B3FF /* BXSafeTransition.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BXSafeTransition.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 919BFEB6633E4E636EC84575 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 95DF76FEDC9308989FC57B43 /* Pods-BXSafeTransition_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BXSafeTransition_Tests.debug.xcconfig"; sourceTree = ""; }; + 98A420267BAE8844C0CE93D7 /* Pods-BXSafeTransition_Example-BXSafeTransition.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-BXSafeTransition_Example-BXSafeTransition.modulemap"; sourceTree = ""; }; + 9D33BF00256C7E222FD263DF /* Pods-BXSafeTransition_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-BXSafeTransition_Example-dummy.m"; sourceTree = ""; }; + AADD7C2FF624A3FE04E19D13 /* Pods-BXSafeTransition_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BXSafeTransition_Tests-frameworks.sh"; sourceTree = ""; }; + AC5BE9D2C174D93975D002EA /* Pods-BXSafeTransition_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-BXSafeTransition_Tests-acknowledgements.markdown"; sourceTree = ""; }; + B203C144B500E3CA8D72797E /* Pods-BXSafeTransition_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BXSafeTransition_Example-frameworks.sh"; sourceTree = ""; }; + B79EEF3894198950BE547BCC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + B9C91B360EFD04CC6B31CF3C /* Pods-BXSafeTransition_Tests-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BXSafeTransition_Tests-environment.h"; sourceTree = ""; }; + CF08EB338724B0D4394C8BB5 /* Pods-BXSafeTransition_Tests-BXSafeTransition-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Pods-BXSafeTransition_Tests-BXSafeTransition-dummy.m"; path = "../Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-dummy.m"; sourceTree = ""; }; + CFB1AFDFB449BB1CAC3D26EF /* Pods-BXSafeTransition_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-BXSafeTransition_Tests-acknowledgements.plist"; sourceTree = ""; }; + DBDC481591933CFFB81819D7 /* Pods-BXSafeTransition_Tests-BXSafeTransition.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; name = "Pods-BXSafeTransition_Tests-BXSafeTransition.modulemap"; path = "../Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition.modulemap"; sourceTree = ""; }; + DF21DA63F4EDD74AB89F25BE /* Pods-BXSafeTransition_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-BXSafeTransition_Tests-dummy.m"; sourceTree = ""; }; + E19445C670B2B44E3A5620DF /* Pods-BXSafeTransition_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BXSafeTransition_Tests.release.xcconfig"; sourceTree = ""; }; + EE5DB257FE874FB0F8F87933 /* Pods-BXSafeTransition_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BXSafeTransition_Example.debug.xcconfig"; sourceTree = ""; }; + EFBDF11A7FB0A3D10E007936 /* Pods-BXSafeTransition_Tests-BXSafeTransition.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BXSafeTransition_Tests-BXSafeTransition.xcconfig"; path = "../Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition.xcconfig"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 60D38EB7158414C7E8B48E5C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 7F266D1E7FA2EADF0C3F0F3B /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6B9FC40723718325AEA00362 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E5CE474351C8874940B7C69A /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7F852B9672C67466F9A62B96 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9D0FA8544B1F345E1A74D17F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 55555926A77ACC042B1463DF /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9D5FF0B3FB3918907261EA52 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B3C9F949A884708182B5974E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + D8E9AC880374F5FE34A80A9E /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 06CA369D7FD23B42C7BF5D27 /* iOS */ = { + isa = PBXGroup; + children = ( + 919BFEB6633E4E636EC84575 /* Foundation.framework */, + ); + name = iOS; + sourceTree = ""; + }; + 087EB74B8FB3C999990E00AC /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + A83415C11D9F1169B908C052 /* Pods-BXSafeTransition_Example */, + DFE5D781B86D891F027C4EC9 /* Pods-BXSafeTransition_Tests */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + 0CA484B21D214B4E6EBB1B53 /* Development Pods */ = { + isa = PBXGroup; + children = ( + 7F491B678919E135C5DACEFB /* BXSafeTransition */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + 3BFA6B6A5E781940B3CE3976 /* Classes */ = { + isa = PBXGroup; + children = ( + 690860051B55ED110063C8CF /* UINavigationController+BXSafeTransition.h */, + 690860061B55ED110063C8CF /* UINavigationController+BXSafeTransition.m */, + ); + path = Classes; + sourceTree = ""; + }; + 4A9F348EC32A364D03054062 = { + isa = PBXGroup; + children = ( + 0C1C3E327124A26C711EE5ED /* Podfile */, + 0CA484B21D214B4E6EBB1B53 /* Development Pods */, + 4E2895C9D1F0361A4F5ACBDF /* Frameworks */, + 9D7D4E1A6F9C66276D460714 /* Products */, + 087EB74B8FB3C999990E00AC /* Targets Support Files */, + ); + sourceTree = ""; + }; + 4E2895C9D1F0361A4F5ACBDF /* Frameworks */ = { + isa = PBXGroup; + children = ( + 06CA369D7FD23B42C7BF5D27 /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + 7F491B678919E135C5DACEFB /* BXSafeTransition */ = { + isa = PBXGroup; + children = ( + 9BD52DBBFCBED05FC3887541 /* Pod */, + 83A252A2EF8822E09E846BB7 /* Support Files */, + ); + name = BXSafeTransition; + path = ../..; + sourceTree = ""; + }; + 83A252A2EF8822E09E846BB7 /* Support Files */ = { + isa = PBXGroup; + children = ( + 1281B7B9B40ED34DAF037F68 /* Info.plist */, + 145C5CD522523C5F458236E0 /* Info.plist */, + 98A420267BAE8844C0CE93D7 /* Pods-BXSafeTransition_Example-BXSafeTransition.modulemap */, + 87E1880AA627141F6FBF27D1 /* Pods-BXSafeTransition_Example-BXSafeTransition.xcconfig */, + 08D758B6C71AD42EA49A09F5 /* Pods-BXSafeTransition_Example-BXSafeTransition-Private.xcconfig */, + 6DB82E3AFC1B4720A169F0B5 /* Pods-BXSafeTransition_Example-BXSafeTransition-dummy.m */, + 88E28B8D4F78D21E5767FC55 /* Pods-BXSafeTransition_Example-BXSafeTransition-prefix.pch */, + 5F5B05C4C77734E7CD23B04D /* Pods-BXSafeTransition_Example-BXSafeTransition-umbrella.h */, + DBDC481591933CFFB81819D7 /* Pods-BXSafeTransition_Tests-BXSafeTransition.modulemap */, + EFBDF11A7FB0A3D10E007936 /* Pods-BXSafeTransition_Tests-BXSafeTransition.xcconfig */, + 54E71BB73D4EE1F041FE8B50 /* Pods-BXSafeTransition_Tests-BXSafeTransition-Private.xcconfig */, + CF08EB338724B0D4394C8BB5 /* Pods-BXSafeTransition_Tests-BXSafeTransition-dummy.m */, + 56215894D3D2595C584494E2 /* Pods-BXSafeTransition_Tests-BXSafeTransition-prefix.pch */, + 755167F1FF4B76F44FE232AD /* Pods-BXSafeTransition_Tests-BXSafeTransition-umbrella.h */, + ); + name = "Support Files"; + path = "Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition"; + sourceTree = ""; + }; + 9BD52DBBFCBED05FC3887541 /* Pod */ = { + isa = PBXGroup; + children = ( + 3BFA6B6A5E781940B3CE3976 /* Classes */, + ); + path = Pod; + sourceTree = ""; + }; + 9D7D4E1A6F9C66276D460714 /* Products */ = { + isa = PBXGroup; + children = ( + 0E4FBA3D07A5764D949EA483 /* BXSafeTransition.bundle */, + 44E4CEE3F8499BFFFE1597B7 /* BXSafeTransition.bundle */, + 8F65ACF296F80F2BCFC3B3FF /* BXSafeTransition.framework */, + 7AFB052FC19513A1A1A185BA /* BXSafeTransition.framework */, + 0F695F437C6C82029DE322F2 /* Pods_BXSafeTransition_Example.framework */, + 78B1C3450AFD083DDA9E978A /* Pods_BXSafeTransition_Tests.framework */, + ); + name = Products; + sourceTree = ""; + }; + A83415C11D9F1169B908C052 /* Pods-BXSafeTransition_Example */ = { + isa = PBXGroup; + children = ( + 2BB9221E86F7203D236C0CA5 /* Info.plist */, + 1563E9F83DE257EDDFFA73A9 /* Pods-BXSafeTransition_Example.modulemap */, + 63C4AD6C9556F2550D8FC2FD /* Pods-BXSafeTransition_Example-acknowledgements.markdown */, + 5F3B2B93F6E6A100D43DF90C /* Pods-BXSafeTransition_Example-acknowledgements.plist */, + 9D33BF00256C7E222FD263DF /* Pods-BXSafeTransition_Example-dummy.m */, + 0BDF8EB437F5134C24F4E467 /* Pods-BXSafeTransition_Example-environment.h */, + B203C144B500E3CA8D72797E /* Pods-BXSafeTransition_Example-frameworks.sh */, + 24339E0DEFCE64C22BA0EB25 /* Pods-BXSafeTransition_Example-resources.sh */, + 33568DA3EA92CBEB4E93B199 /* Pods-BXSafeTransition_Example-umbrella.h */, + EE5DB257FE874FB0F8F87933 /* Pods-BXSafeTransition_Example.debug.xcconfig */, + 6D13584410DD4A796B43068C /* Pods-BXSafeTransition_Example.release.xcconfig */, + ); + name = "Pods-BXSafeTransition_Example"; + path = "Target Support Files/Pods-BXSafeTransition_Example"; + sourceTree = ""; + }; + DFE5D781B86D891F027C4EC9 /* Pods-BXSafeTransition_Tests */ = { + isa = PBXGroup; + children = ( + B79EEF3894198950BE547BCC /* Info.plist */, + 5462F14850E3515AB4DAD37F /* Pods-BXSafeTransition_Tests.modulemap */, + AC5BE9D2C174D93975D002EA /* Pods-BXSafeTransition_Tests-acknowledgements.markdown */, + CFB1AFDFB449BB1CAC3D26EF /* Pods-BXSafeTransition_Tests-acknowledgements.plist */, + DF21DA63F4EDD74AB89F25BE /* Pods-BXSafeTransition_Tests-dummy.m */, + B9C91B360EFD04CC6B31CF3C /* Pods-BXSafeTransition_Tests-environment.h */, + AADD7C2FF624A3FE04E19D13 /* Pods-BXSafeTransition_Tests-frameworks.sh */, + 0E003B944C07FCD103E3CD72 /* Pods-BXSafeTransition_Tests-resources.sh */, + 72E3A6F9093FC6A2A2200BB3 /* Pods-BXSafeTransition_Tests-umbrella.h */, + 95DF76FEDC9308989FC57B43 /* Pods-BXSafeTransition_Tests.debug.xcconfig */, + E19445C670B2B44E3A5620DF /* Pods-BXSafeTransition_Tests.release.xcconfig */, + ); + name = "Pods-BXSafeTransition_Tests"; + path = "Target Support Files/Pods-BXSafeTransition_Tests"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 154A2B10AC649AA465E4EA6D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + A6AE7CD90FB3A6D60A557941 /* Pods-BXSafeTransition_Example-BXSafeTransition-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6B9A015EAC5A57921DD6846E /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + C7F4E299A91C313E94B0A043 /* Pods-BXSafeTransition_Tests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 75A944E6785D48410A9CAB64 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B2B4CB2DD6E5477692435B85 /* Pods-BXSafeTransition_Tests-BXSafeTransition-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D2620438CB380FE1C3F11FFD /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 690860071B55ED110063C8CF /* UINavigationController+BXSafeTransition.h in Headers */, + 5E5AF010C2B8A2ABA82DF1F8 /* Pods-BXSafeTransition_Example-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 341033D8D26D3D80E2E1D094 /* Pods-BXSafeTransition_Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = 6F7A7CA029AC03AC59339613 /* Build configuration list for PBXNativeTarget "Pods-BXSafeTransition_Example" */; + buildPhases = ( + 5E11D06889CE59AE7F9A9621 /* Sources */, + 9D0FA8544B1F345E1A74D17F /* Frameworks */, + D2620438CB380FE1C3F11FFD /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 722C1657C68250DCFC4F1D24 /* PBXTargetDependency */, + ); + name = "Pods-BXSafeTransition_Example"; + productName = "Pods-BXSafeTransition_Example"; + productReference = 0F695F437C6C82029DE322F2 /* Pods_BXSafeTransition_Example.framework */; + productType = "com.apple.product-type.framework"; + }; + 4A2E35D1A4BA50A05DBB79B0 /* Pods-BXSafeTransition_Tests-BXSafeTransition-BXSafeTransition */ = { + isa = PBXNativeTarget; + buildConfigurationList = AD4DF5F010FD403B2CC6E586 /* Build configuration list for PBXNativeTarget "Pods-BXSafeTransition_Tests-BXSafeTransition-BXSafeTransition" */; + buildPhases = ( + 216CD63F702E0F7858DB177C /* Sources */, + 9D5FF0B3FB3918907261EA52 /* Frameworks */, + A1BFEDDEEBCAB8D83ED8ED83 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-BXSafeTransition_Tests-BXSafeTransition-BXSafeTransition"; + productName = "Pods-BXSafeTransition_Tests-BXSafeTransition-BXSafeTransition"; + productReference = 0E4FBA3D07A5764D949EA483 /* BXSafeTransition.bundle */; + productType = "com.apple.product-type.bundle"; + }; + 7C0D4EBD2054E4777C331382 /* Pods-BXSafeTransition_Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1B607DF1EDFB30CBEEE04773 /* Build configuration list for PBXNativeTarget "Pods-BXSafeTransition_Tests" */; + buildPhases = ( + C8EB23546A6F9C5EAC726137 /* Sources */, + B3C9F949A884708182B5974E /* Frameworks */, + 6B9A015EAC5A57921DD6846E /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + A6B900AF9C0A149FA297A4BC /* PBXTargetDependency */, + ); + name = "Pods-BXSafeTransition_Tests"; + productName = "Pods-BXSafeTransition_Tests"; + productReference = 78B1C3450AFD083DDA9E978A /* Pods_BXSafeTransition_Tests.framework */; + productType = "com.apple.product-type.framework"; + }; + 8068C5D1DA2F88B79EE5D49B /* Pods-BXSafeTransition_Tests-BXSafeTransition */ = { + isa = PBXNativeTarget; + buildConfigurationList = 85DE620ED92C07270B5003F3 /* Build configuration list for PBXNativeTarget "Pods-BXSafeTransition_Tests-BXSafeTransition" */; + buildPhases = ( + FEC77AB0219DD3833AA68956 /* Sources */, + 60D38EB7158414C7E8B48E5C /* Frameworks */, + 7361C937983927385B5D6592 /* Resources */, + 75A944E6785D48410A9CAB64 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 55B5DC6418953AF794F03A05 /* PBXTargetDependency */, + ); + name = "Pods-BXSafeTransition_Tests-BXSafeTransition"; + productName = "Pods-BXSafeTransition_Tests-BXSafeTransition"; + productReference = 7AFB052FC19513A1A1A185BA /* BXSafeTransition.framework */; + productType = "com.apple.product-type.framework"; + }; + 98E3D0773788CF089073D6AD /* Pods-BXSafeTransition_Example-BXSafeTransition */ = { + isa = PBXNativeTarget; + buildConfigurationList = DD0DFB670D9D9EFFAB409769 /* Build configuration list for PBXNativeTarget "Pods-BXSafeTransition_Example-BXSafeTransition" */; + buildPhases = ( + 3F356802A4BFDEF72EE0C3F4 /* Sources */, + 6B9FC40723718325AEA00362 /* Frameworks */, + 3B323CFBA23BE9C405C813EE /* Resources */, + 154A2B10AC649AA465E4EA6D /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + DC60A87E3BBE00DD9A58DB98 /* PBXTargetDependency */, + ); + name = "Pods-BXSafeTransition_Example-BXSafeTransition"; + productName = "Pods-BXSafeTransition_Example-BXSafeTransition"; + productReference = 8F65ACF296F80F2BCFC3B3FF /* BXSafeTransition.framework */; + productType = "com.apple.product-type.framework"; + }; + B273D136B5F7501ADBC46960 /* Pods-BXSafeTransition_Example-BXSafeTransition-BXSafeTransition */ = { + isa = PBXNativeTarget; + buildConfigurationList = 2B85A556FFFAC59164278CEF /* Build configuration list for PBXNativeTarget "Pods-BXSafeTransition_Example-BXSafeTransition-BXSafeTransition" */; + buildPhases = ( + 2CDBC027B67D82F58778CBD3 /* Sources */, + 7F852B9672C67466F9A62B96 /* Frameworks */, + 637DBEBBB566EF9D4F5A8604 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-BXSafeTransition_Example-BXSafeTransition-BXSafeTransition"; + productName = "Pods-BXSafeTransition_Example-BXSafeTransition-BXSafeTransition"; + productReference = 44E4CEE3F8499BFFFE1597B7 /* BXSafeTransition.bundle */; + productType = "com.apple.product-type.bundle"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 3F46E8044D017D96ADE99D85 /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0640; + }; + buildConfigurationList = 0FBD3C276677B9E76B628F4F /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 4A9F348EC32A364D03054062; + productRefGroup = 9D7D4E1A6F9C66276D460714 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 341033D8D26D3D80E2E1D094 /* Pods-BXSafeTransition_Example */, + 98E3D0773788CF089073D6AD /* Pods-BXSafeTransition_Example-BXSafeTransition */, + B273D136B5F7501ADBC46960 /* Pods-BXSafeTransition_Example-BXSafeTransition-BXSafeTransition */, + 7C0D4EBD2054E4777C331382 /* Pods-BXSafeTransition_Tests */, + 8068C5D1DA2F88B79EE5D49B /* Pods-BXSafeTransition_Tests-BXSafeTransition */, + 4A2E35D1A4BA50A05DBB79B0 /* Pods-BXSafeTransition_Tests-BXSafeTransition-BXSafeTransition */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 3B323CFBA23BE9C405C813EE /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9C171B74BE2596CE19B30608 /* BXSafeTransition.bundle in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 637DBEBBB566EF9D4F5A8604 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7361C937983927385B5D6592 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 080F5C6DC9884B6A41067052 /* BXSafeTransition.bundle in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A1BFEDDEEBCAB8D83ED8ED83 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 216CD63F702E0F7858DB177C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2CDBC027B67D82F58778CBD3 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3F356802A4BFDEF72EE0C3F4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E58C784F4CB92CDE2CAE1823 /* Pods-BXSafeTransition_Example-BXSafeTransition-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5E11D06889CE59AE7F9A9621 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + AB486D6AAD390EEC27BFB895 /* Pods-BXSafeTransition_Example-dummy.m in Sources */, + 690860081B55ED110063C8CF /* UINavigationController+BXSafeTransition.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C8EB23546A6F9C5EAC726137 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 09487E2BA471002DA3F10252 /* Pods-BXSafeTransition_Tests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FEC77AB0219DD3833AA68956 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 716A0A9068691524A75F914E /* Pods-BXSafeTransition_Tests-BXSafeTransition-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 55B5DC6418953AF794F03A05 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-BXSafeTransition_Tests-BXSafeTransition-BXSafeTransition"; + target = 4A2E35D1A4BA50A05DBB79B0 /* Pods-BXSafeTransition_Tests-BXSafeTransition-BXSafeTransition */; + targetProxy = 5F07A5AA7487CC601DCE57EE /* PBXContainerItemProxy */; + }; + 722C1657C68250DCFC4F1D24 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-BXSafeTransition_Example-BXSafeTransition"; + target = 98E3D0773788CF089073D6AD /* Pods-BXSafeTransition_Example-BXSafeTransition */; + targetProxy = 3999CAD70BFFDF713DD0B48B /* PBXContainerItemProxy */; + }; + A6B900AF9C0A149FA297A4BC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-BXSafeTransition_Tests-BXSafeTransition"; + target = 8068C5D1DA2F88B79EE5D49B /* Pods-BXSafeTransition_Tests-BXSafeTransition */; + targetProxy = 3BD5E370777E72A6F996EE4F /* PBXContainerItemProxy */; + }; + DC60A87E3BBE00DD9A58DB98 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-BXSafeTransition_Example-BXSafeTransition-BXSafeTransition"; + target = B273D136B5F7501ADBC46960 /* Pods-BXSafeTransition_Example-BXSafeTransition-BXSafeTransition */; + targetProxy = C97484A397B0E90F49FD4F38 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 03BE64F4412AE3F797B87AF0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6D13584410DD4A796B43068C /* Pods-BXSafeTransition_Example.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + INFOPLIST_FILE = "Target Support Files/Pods-BXSafeTransition_Example/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 7.1; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_NAME = Pods_BXSafeTransition_Example; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 2BF5E5460DB347330D5DBAA0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 08D758B6C71AD42EA49A09F5 /* Pods-BXSafeTransition_Example-BXSafeTransition-Private.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 7.1; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = BXSafeTransition; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 338031A495B6715C38AA6D10 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 7.1; + ONLY_ACTIVE_ARCH = YES; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; + 487A9DF0C8C870AE8A229FB1 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 54E71BB73D4EE1F041FE8B50 /* Pods-BXSafeTransition_Tests-BXSafeTransition-Private.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 7.1; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = BXSafeTransition; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 56DEAC52428AD7B1502B68DB /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 08D758B6C71AD42EA49A09F5 /* Pods-BXSafeTransition_Example-BXSafeTransition-Private.xcconfig */; + buildSettings = { + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BXSafeTransition_Example"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + PRODUCT_NAME = BXSafeTransition; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 590DA5D7B07C223EACE2B391 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 54E71BB73D4EE1F041FE8B50 /* Pods-BXSafeTransition_Tests-BXSafeTransition-Private.xcconfig */; + buildSettings = { + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BXSafeTransition_Tests"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + PRODUCT_NAME = BXSafeTransition; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 705DB34F3F8D68A170F17638 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 08D758B6C71AD42EA49A09F5 /* Pods-BXSafeTransition_Example-BXSafeTransition-Private.xcconfig */; + buildSettings = { + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BXSafeTransition_Example"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + PRODUCT_NAME = BXSafeTransition; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 868D10E64B2A85EBE2569A2E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + ENABLE_NS_ASSERTIONS = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 7.1; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 8F2D5C65A03AC9EB831A9BFC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 54E71BB73D4EE1F041FE8B50 /* Pods-BXSafeTransition_Tests-BXSafeTransition-Private.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 7.1; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = BXSafeTransition; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + B1A3C4BA10265AADEF779A32 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E19445C670B2B44E3A5620DF /* Pods-BXSafeTransition_Tests.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + INFOPLIST_FILE = "Target Support Files/Pods-BXSafeTransition_Tests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 7.1; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_NAME = Pods_BXSafeTransition_Tests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + CDE16B93DB6168A66653F62A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 95DF76FEDC9308989FC57B43 /* Pods-BXSafeTransition_Tests.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + INFOPLIST_FILE = "Target Support Files/Pods-BXSafeTransition_Tests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 7.1; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_NAME = Pods_BXSafeTransition_Tests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + EAD2372AE871109D010B4EB8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EE5DB257FE874FB0F8F87933 /* Pods-BXSafeTransition_Example.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + INFOPLIST_FILE = "Target Support Files/Pods-BXSafeTransition_Example/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 7.1; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_NAME = Pods_BXSafeTransition_Example; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + F1A79D89D607F6480797E25D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 08D758B6C71AD42EA49A09F5 /* Pods-BXSafeTransition_Example-BXSafeTransition-Private.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 7.1; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = BXSafeTransition; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + FD0910621719A213CFB312F7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 54E71BB73D4EE1F041FE8B50 /* Pods-BXSafeTransition_Tests-BXSafeTransition-Private.xcconfig */; + buildSettings = { + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BXSafeTransition_Tests"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + PRODUCT_NAME = BXSafeTransition; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 0FBD3C276677B9E76B628F4F /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 338031A495B6715C38AA6D10 /* Debug */, + 868D10E64B2A85EBE2569A2E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 1B607DF1EDFB30CBEEE04773 /* Build configuration list for PBXNativeTarget "Pods-BXSafeTransition_Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + CDE16B93DB6168A66653F62A /* Debug */, + B1A3C4BA10265AADEF779A32 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2B85A556FFFAC59164278CEF /* Build configuration list for PBXNativeTarget "Pods-BXSafeTransition_Example-BXSafeTransition-BXSafeTransition" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 705DB34F3F8D68A170F17638 /* Debug */, + 56DEAC52428AD7B1502B68DB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 6F7A7CA029AC03AC59339613 /* Build configuration list for PBXNativeTarget "Pods-BXSafeTransition_Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + EAD2372AE871109D010B4EB8 /* Debug */, + 03BE64F4412AE3F797B87AF0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 85DE620ED92C07270B5003F3 /* Build configuration list for PBXNativeTarget "Pods-BXSafeTransition_Tests-BXSafeTransition" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 487A9DF0C8C870AE8A229FB1 /* Debug */, + 8F2D5C65A03AC9EB831A9BFC /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + AD4DF5F010FD403B2CC6E586 /* Build configuration list for PBXNativeTarget "Pods-BXSafeTransition_Tests-BXSafeTransition-BXSafeTransition" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FD0910621719A213CFB312F7 /* Debug */, + 590DA5D7B07C223EACE2B391 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DD0DFB670D9D9EFFAB409769 /* Build configuration list for PBXNativeTarget "Pods-BXSafeTransition_Example-BXSafeTransition" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2BF5E5460DB347330D5DBAA0 /* Debug */, + F1A79D89D607F6480797E25D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 3F46E8044D017D96ADE99D85 /* Project object */; +} diff --git a/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Example-BXSafeTransition-BXSafeTransition.xcscheme b/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Example-BXSafeTransition-BXSafeTransition.xcscheme new file mode 100644 index 0000000..679b0e1 --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Example-BXSafeTransition-BXSafeTransition.xcscheme @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Example-BXSafeTransition.xcscheme b/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Example-BXSafeTransition.xcscheme new file mode 100644 index 0000000..5ef3152 --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Example-BXSafeTransition.xcscheme @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Tests-BXSafeTransition-BXSafeTransition.xcscheme b/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Tests-BXSafeTransition-BXSafeTransition.xcscheme new file mode 100644 index 0000000..a37d79b --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Tests-BXSafeTransition-BXSafeTransition.xcscheme @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Tests-BXSafeTransition.xcscheme b/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Tests-BXSafeTransition.xcscheme new file mode 100644 index 0000000..38e6f68 --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-BXSafeTransition_Tests-BXSafeTransition.xcscheme @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Info.plist b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Info.plist new file mode 100644 index 0000000..4ba5fa2 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + org.cocoapods.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 0.1.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-Private.xcconfig b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-Private.xcconfig new file mode 100644 index 0000000..d9d7cb1 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-Private.xcconfig @@ -0,0 +1,9 @@ +#include "Pods-BXSafeTransition_Example-BXSafeTransition.xcconfig" +CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH +FRAMEWORK_SEARCH_PATHS = "$PODS_FRAMEWORK_BUILD_PATH" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BXSafeTransition" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BXSafeTransition" +OTHER_LDFLAGS = -ObjC +PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BXSafeTransition_Example +PODS_ROOT = ${SRCROOT} +SKIP_INSTALL = YES \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-dummy.m b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-dummy.m new file mode 100644 index 0000000..c74684e --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_BXSafeTransition_Example_BXSafeTransition : NSObject +@end +@implementation PodsDummy_Pods_BXSafeTransition_Example_BXSafeTransition +@end diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-prefix.pch b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-prefix.pch new file mode 100644 index 0000000..a95ceda --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-prefix.pch @@ -0,0 +1,5 @@ +#ifdef __OBJC__ +#import +#endif + +#import "Pods-BXSafeTransition_Example-environment.h" diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-umbrella.h b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-umbrella.h new file mode 100644 index 0000000..9eb1c5c --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double BXSafeTransitionVersionNumber; +FOUNDATION_EXPORT const unsigned char BXSafeTransitionVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition.modulemap b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition.modulemap new file mode 100644 index 0000000..2b7f114 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition.modulemap @@ -0,0 +1,6 @@ +framework module BXSafeTransition { + umbrella header "Pods-BXSafeTransition_Example-BXSafeTransition-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition.xcconfig b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example-BXSafeTransition/Pods-BXSafeTransition_Example-BXSafeTransition.xcconfig new file mode 100644 index 0000000..e69de29 diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Info.plist b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Info.plist new file mode 100644 index 0000000..6974542 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + org.cocoapods.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-acknowledgements.markdown new file mode 100644 index 0000000..5e422f1 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-acknowledgements.markdown @@ -0,0 +1,26 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## BXSafeTransition + +Copyright (c) 2015 phoebus + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Generated by CocoaPods - http://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-acknowledgements.plist new file mode 100644 index 0000000..9e746d7 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-acknowledgements.plist @@ -0,0 +1,56 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2015 phoebus <shaozhengxingok@126.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + Title + BXSafeTransition + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - http://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-dummy.m b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-dummy.m new file mode 100644 index 0000000..1fe1387 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_BXSafeTransition_Example : NSObject +@end +@implementation PodsDummy_Pods_BXSafeTransition_Example +@end diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-environment.h b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-environment.h new file mode 100644 index 0000000..f728875 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-environment.h @@ -0,0 +1,14 @@ + +// To check if a library is compiled with CocoaPods you +// can use the `COCOAPODS` macro definition which is +// defined in the xcconfigs so it is available in +// headers also when they are imported in the client +// project. + + +// BXSafeTransition +#define COCOAPODS_POD_AVAILABLE_BXSafeTransition +#define COCOAPODS_VERSION_MAJOR_BXSafeTransition 0 +#define COCOAPODS_VERSION_MINOR_BXSafeTransition 1 +#define COCOAPODS_VERSION_PATCH_BXSafeTransition 0 + diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-frameworks.sh b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-frameworks.sh new file mode 100755 index 0000000..5f3ac60 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-frameworks.sh @@ -0,0 +1,55 @@ +#!/bin/sh +set -e + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" + +install_framework() +{ + local source="${BUILT_PRODUCTS_DIR}/Pods-BXSafeTransition_Example/$1" + local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source=$(readlink "${source}") + fi + + # use filter instead of exclude so missing patterns dont' throw errors + echo "rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" --filter "- Modules/" ${source} ${destination}" + rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" --filter "- Modules/" "${source}" "${destination}" + # Resign the code if required by the build settings to avoid unstable apps + if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then + code_sign "${destination}/$1" + fi + + # Embed linked Swift runtime libraries + local basename + basename=$(echo $1 | sed -E s/\\..+// && exit ${PIPESTATUS[0]}) + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/$1/${basename}" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then + code_sign "${destination}/${lib}" + fi + done +} + +# Signs a framework with the provided identity +code_sign() { + # Use the current code_sign_identitiy + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1" + /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" +} + + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework 'BXSafeTransition.framework' +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework 'BXSafeTransition.framework' +fi diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-resources.sh b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-resources.sh new file mode 100755 index 0000000..43f0852 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-resources.sh @@ -0,0 +1,93 @@ +#!/bin/sh +set -e + +mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +realpath() { + DIRECTORY=$(cd "${1%/*}" && pwd) + FILENAME="${1##*/}" + echo "$DIRECTORY/$FILENAME" +} + +install_resource() +{ + case $1 in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" + ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" + ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" + ;; + *.framework) + echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" + xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" + xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" + xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + /*) + echo "$1" + echo "$1" >> "$RESOURCES_TO_COPY" + ;; + *) + echo "${PODS_ROOT}/$1" + echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]]; then + rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi +rm -f "$RESOURCES_TO_COPY" + +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] +then + case "${TARGETED_DEVICE_FAMILY}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; + esac + + # Find all other xcassets (this unfortunately includes those of path pods and other targets). + OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + while read line; do + if [[ $line != "`realpath $PODS_ROOT`*" ]]; then + XCASSET_FILES+=("$line") + fi + done <<<"$OTHER_XCASSETS" + + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-umbrella.h b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-umbrella.h new file mode 100644 index 0000000..85274b7 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double Pods_BXSafeTransition_ExampleVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_BXSafeTransition_ExampleVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.debug.xcconfig b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.debug.xcconfig new file mode 100644 index 0000000..6b0581d --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.debug.xcconfig @@ -0,0 +1,8 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/BXSafeTransition.framework/Headers" +OTHER_LDFLAGS = $(inherited) -ObjC -framework "BXSafeTransition" +OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) +PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BXSafeTransition_Example +PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.modulemap b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.modulemap new file mode 100644 index 0000000..31f77af --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.modulemap @@ -0,0 +1,6 @@ +framework module Pods_BXSafeTransition_Example { + umbrella header "Pods-BXSafeTransition_Example-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.release.xcconfig b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.release.xcconfig new file mode 100644 index 0000000..6b0581d --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Example/Pods-BXSafeTransition_Example.release.xcconfig @@ -0,0 +1,8 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/BXSafeTransition.framework/Headers" +OTHER_LDFLAGS = $(inherited) -ObjC -framework "BXSafeTransition" +OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) +PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BXSafeTransition_Example +PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Info.plist b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Info.plist new file mode 100644 index 0000000..4ba5fa2 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + org.cocoapods.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 0.1.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-Private.xcconfig b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-Private.xcconfig new file mode 100644 index 0000000..d6ba6c8 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-Private.xcconfig @@ -0,0 +1,9 @@ +#include "Pods-BXSafeTransition_Tests-BXSafeTransition.xcconfig" +CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH +FRAMEWORK_SEARCH_PATHS = "$PODS_FRAMEWORK_BUILD_PATH" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BXSafeTransition" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BXSafeTransition" +OTHER_LDFLAGS = -ObjC +PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BXSafeTransition_Tests +PODS_ROOT = ${SRCROOT} +SKIP_INSTALL = YES \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-dummy.m b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-dummy.m new file mode 100644 index 0000000..364d17d --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_BXSafeTransition_Tests_BXSafeTransition : NSObject +@end +@implementation PodsDummy_Pods_BXSafeTransition_Tests_BXSafeTransition +@end diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-prefix.pch b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-prefix.pch new file mode 100644 index 0000000..e8def77 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-prefix.pch @@ -0,0 +1,5 @@ +#ifdef __OBJC__ +#import +#endif + +#import "Pods-BXSafeTransition_Tests-environment.h" diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-umbrella.h b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-umbrella.h new file mode 100644 index 0000000..9eb1c5c --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double BXSafeTransitionVersionNumber; +FOUNDATION_EXPORT const unsigned char BXSafeTransitionVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition.modulemap b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition.modulemap new file mode 100644 index 0000000..38e7069 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition.modulemap @@ -0,0 +1,6 @@ +framework module BXSafeTransition { + umbrella header "Pods-BXSafeTransition_Tests-BXSafeTransition-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition.xcconfig b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests-BXSafeTransition/Pods-BXSafeTransition_Tests-BXSafeTransition.xcconfig new file mode 100644 index 0000000..e69de29 diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Info.plist b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Info.plist new file mode 100644 index 0000000..6974542 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + org.cocoapods.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-acknowledgements.markdown new file mode 100644 index 0000000..5e422f1 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-acknowledgements.markdown @@ -0,0 +1,26 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## BXSafeTransition + +Copyright (c) 2015 phoebus + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Generated by CocoaPods - http://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-acknowledgements.plist new file mode 100644 index 0000000..9e746d7 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-acknowledgements.plist @@ -0,0 +1,56 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2015 phoebus <shaozhengxingok@126.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + Title + BXSafeTransition + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - http://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-dummy.m b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-dummy.m new file mode 100644 index 0000000..b17345a --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_BXSafeTransition_Tests : NSObject +@end +@implementation PodsDummy_Pods_BXSafeTransition_Tests +@end diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-environment.h b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-environment.h new file mode 100644 index 0000000..f728875 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-environment.h @@ -0,0 +1,14 @@ + +// To check if a library is compiled with CocoaPods you +// can use the `COCOAPODS` macro definition which is +// defined in the xcconfigs so it is available in +// headers also when they are imported in the client +// project. + + +// BXSafeTransition +#define COCOAPODS_POD_AVAILABLE_BXSafeTransition +#define COCOAPODS_VERSION_MAJOR_BXSafeTransition 0 +#define COCOAPODS_VERSION_MINOR_BXSafeTransition 1 +#define COCOAPODS_VERSION_PATCH_BXSafeTransition 0 + diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-frameworks.sh b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-frameworks.sh new file mode 100755 index 0000000..6ec597c --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-frameworks.sh @@ -0,0 +1,55 @@ +#!/bin/sh +set -e + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" + +install_framework() +{ + local source="${BUILT_PRODUCTS_DIR}/Pods-BXSafeTransition_Tests/$1" + local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source=$(readlink "${source}") + fi + + # use filter instead of exclude so missing patterns dont' throw errors + echo "rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" --filter "- Modules/" ${source} ${destination}" + rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" --filter "- Modules/" "${source}" "${destination}" + # Resign the code if required by the build settings to avoid unstable apps + if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then + code_sign "${destination}/$1" + fi + + # Embed linked Swift runtime libraries + local basename + basename=$(echo $1 | sed -E s/\\..+// && exit ${PIPESTATUS[0]}) + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/$1/${basename}" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then + code_sign "${destination}/${lib}" + fi + done +} + +# Signs a framework with the provided identity +code_sign() { + # Use the current code_sign_identitiy + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1" + /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" +} + + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework 'BXSafeTransition.framework' +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework 'BXSafeTransition.framework' +fi diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-resources.sh b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-resources.sh new file mode 100755 index 0000000..43f0852 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-resources.sh @@ -0,0 +1,93 @@ +#!/bin/sh +set -e + +mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +realpath() { + DIRECTORY=$(cd "${1%/*}" && pwd) + FILENAME="${1##*/}" + echo "$DIRECTORY/$FILENAME" +} + +install_resource() +{ + case $1 in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" + ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" + ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" + ;; + *.framework) + echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" + xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" + xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" + xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + /*) + echo "$1" + echo "$1" >> "$RESOURCES_TO_COPY" + ;; + *) + echo "${PODS_ROOT}/$1" + echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]]; then + rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi +rm -f "$RESOURCES_TO_COPY" + +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] +then + case "${TARGETED_DEVICE_FAMILY}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; + esac + + # Find all other xcassets (this unfortunately includes those of path pods and other targets). + OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + while read line; do + if [[ $line != "`realpath $PODS_ROOT`*" ]]; then + XCASSET_FILES+=("$line") + fi + done <<<"$OTHER_XCASSETS" + + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-umbrella.h b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-umbrella.h new file mode 100644 index 0000000..0c33650 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double Pods_BXSafeTransition_TestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_BXSafeTransition_TestsVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.debug.xcconfig new file mode 100644 index 0000000..7dd4134 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.debug.xcconfig @@ -0,0 +1,8 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/BXSafeTransition.framework/Headers" +OTHER_LDFLAGS = $(inherited) -ObjC -framework "BXSafeTransition" +OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) +PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BXSafeTransition_Tests +PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.modulemap b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.modulemap new file mode 100644 index 0000000..7cf1ce0 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_BXSafeTransition_Tests { + umbrella header "Pods-BXSafeTransition_Tests-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.release.xcconfig b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.release.xcconfig new file mode 100644 index 0000000..7dd4134 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-BXSafeTransition_Tests/Pods-BXSafeTransition_Tests.release.xcconfig @@ -0,0 +1,8 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/BXSafeTransition.framework/Headers" +OTHER_LDFLAGS = $(inherited) -ObjC -framework "BXSafeTransition" +OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) +PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BXSafeTransition_Tests +PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file diff --git a/Example/Tests/Tests-Info.plist b/Example/Tests/Tests-Info.plist new file mode 100644 index 0000000..41520ed --- /dev/null +++ b/Example/Tests/Tests-Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + + diff --git a/Example/Tests/Tests-Prefix.pch b/Example/Tests/Tests-Prefix.pch new file mode 100644 index 0000000..0bfb741 --- /dev/null +++ b/Example/Tests/Tests-Prefix.pch @@ -0,0 +1,7 @@ +// The contents of this file are implicitly included at the beginning of every test case source file. + +#ifdef __OBJC__ + + + +#endif diff --git a/Example/Tests/Tests.m b/Example/Tests/Tests.m new file mode 100644 index 0000000..5e2acfa --- /dev/null +++ b/Example/Tests/Tests.m @@ -0,0 +1,35 @@ +// +// BXSafeTransitionTests.m +// BXSafeTransitionTests +// +// Created by phoebus on 07/15/2015. +// Copyright (c) 2015 phoebus. All rights reserved. +// + +@import XCTest; + +@interface Tests : XCTestCase + +@end + +@implementation Tests + +- (void)setUp +{ + [super setUp]; + // Put setup code here. This method is called before the invocation of each test method in the class. +} + +- (void)tearDown +{ + // Put teardown code here. This method is called after the invocation of each test method in the class. + [super tearDown]; +} + +- (void)testExample +{ + XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); +} + +@end + diff --git a/Example/Tests/en.lproj/InfoPlist.strings b/Example/Tests/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..477b28f --- /dev/null +++ b/Example/Tests/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..172c5d9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2015 phoebus + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/Pod/Assets/.gitkeep b/Pod/Assets/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/Pod/Classes/.gitkeep b/Pod/Classes/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/Pod/Classes/UINavigationController+BXSafeTransition.h b/Pod/Classes/UINavigationController+BXSafeTransition.h new file mode 100644 index 0000000..c708287 --- /dev/null +++ b/Pod/Classes/UINavigationController+BXSafeTransition.h @@ -0,0 +1,13 @@ +// +// UINavigationController+BXSafeTransition.h +// Baixing +// +// Created by phoebus on 6/23/15. +// Copyright (c) 2015 baixing. All rights reserved. +// + +#import + +@interface UINavigationController (BXSafeTransition) + +@end \ No newline at end of file diff --git a/Pod/Classes/UINavigationController+BXSafeTransition.m b/Pod/Classes/UINavigationController+BXSafeTransition.m new file mode 100644 index 0000000..d23eaaa --- /dev/null +++ b/Pod/Classes/UINavigationController+BXSafeTransition.m @@ -0,0 +1,220 @@ +// +// UINavigationController+BXSafeTransition.m +// Baixing +// +// Created by phoebus on 6/23/15. +// Copyright (c) 2015 baixing. All rights reserved. +// + +#import "UINavigationController+BXSafeTransition.h" +#import + +@interface UINavigationController (BXSafeTransitionPrivate) + +@property (nonatomic, assign) BOOL bx_pushing; +@property (nonatomic, assign) BOOL bx_poping; + +@property (nonatomic, strong) NSArray *bx_pushQueue; +@property (nonatomic, strong) NSArray *bx_popQueue; + +@end + +@interface UIViewController (BXSafeTransitionPrivate) + +@property (nonatomic, weak) UINavigationController *bx_navigationController; + +@end + +@implementation UINavigationController (BXSafeTransition) + ++ (void)load +{ + // this solution is below system version 8.0. + if ( [UIDevice currentDevice].systemVersion.doubleValue < 8.0 ) { + // Method Swizzling `pushViewController:animated:` + Method pushOriMethod = class_getInstanceMethod(self, @selector(pushViewController:animated:)); + Method pushSwlMethod = class_getInstanceMethod(self, @selector(bx_pushViewController:animated:)); + method_exchangeImplementations(pushOriMethod, pushSwlMethod); + + // Method Swizzling `popViewControllerAnimated:` + Method popOriMethod = class_getInstanceMethod(self, @selector(popViewControllerAnimated:)); + Method popSwlMethod = class_getInstanceMethod(self, @selector(bx_popViewControllerAnimated:)); + method_exchangeImplementations(popOriMethod, popSwlMethod); + } +} + +- (void)bx_pushViewController:(UIViewController *)viewController animated:(BOOL)animated +{ + // if pushing, add push operation into queue. + if ( self.bx_pushing ) { + NSMutableArray *array = [self.bx_pushQueue mutableCopy]; + [array addObject:viewController]; + self.bx_pushQueue = [NSArray arrayWithArray:array]; + return; + } + + // remove current push operation when viewController in queue. + if ( [self.bx_pushQueue containsObject:viewController] ) { + NSMutableArray *array = [self.bx_pushQueue mutableCopy]; + [array removeObject:viewController]; + self.bx_pushQueue = [NSArray arrayWithArray:array]; + } + + // set pushing flag + self.bx_pushing = YES; + + // do push operation + [self bx_pushViewController:viewController animated:animated]; +} + +- (UIViewController *)bx_popViewControllerAnimated:(BOOL)animated +{ + // if poping, add pop operation into queue. + if ( self.bx_poping ) { + NSMutableArray *array = [self.bx_popQueue mutableCopy]; + [array addObject:[NSNull null]]; + self.bx_popQueue = [NSArray arrayWithArray:array]; + return nil; + } + + // remove current pop operation when viewController in queue. + if ( self.bx_popQueue.count > 0 ) { + NSMutableArray *array = [self.bx_popQueue mutableCopy]; + [array removeObjectAtIndex:0]; + self.bx_popQueue = [NSArray arrayWithArray:array]; + } + + // set poping flag + self.bx_poping = YES; + + // do pop operation + UIViewController *viewController = [self bx_popViewControllerAnimated:animated]; + + // retain navigation controller when viewDidDisapplear, view.navigationController is nil. + viewController.bx_navigationController = self; + + return viewController; +} + +- (void)bx_viewDidAppear +{ + // get first object in queue to do push operation. + if ( self.bx_pushQueue.firstObject ) { + [self pushViewController:self.bx_pushQueue.firstObject animated:YES]; + } +} + +- (void)bx_viewDidDisappear +{ + // get first object in queue to do pop operation. + if ( self.bx_popQueue.firstObject ) { + [self popViewControllerAnimated:YES]; + } +} + +#pragma mark - setter & getter +- (void)setBx_pushing:(BOOL)bx_pushing +{ + objc_setAssociatedObject(self, @selector(bx_pushing), @(bx_pushing), OBJC_ASSOCIATION_RETAIN); +} + +- (BOOL)bx_pushing +{ + return [objc_getAssociatedObject(self, _cmd) boolValue]; +} + +- (void)setBx_poping:(BOOL)bx_poping +{ + objc_setAssociatedObject(self, @selector(bx_poping), @(bx_poping), OBJC_ASSOCIATION_RETAIN); +} + +- (BOOL)bx_poping +{ + return [objc_getAssociatedObject(self, _cmd) boolValue]; +} + +- (void)setBx_pushQueue:(NSArray *)bx_pushQueue +{ + objc_setAssociatedObject(self, @selector(bx_pushQueue), bx_pushQueue, OBJC_ASSOCIATION_RETAIN); +} + +- (NSArray *)bx_pushQueue +{ + NSArray *queue = objc_getAssociatedObject(self, _cmd); + if ( nil == queue ) { + queue = [NSArray array]; + self.bx_pushQueue = queue; + } + return queue; +} + +- (void)setBx_popQueue:(NSArray *)bx_popQueue +{ + objc_setAssociatedObject(self, @selector(bx_popQueue), bx_popQueue, OBJC_ASSOCIATION_RETAIN); +} + +- (NSArray *)bx_popQueue +{ + NSArray *queue = objc_getAssociatedObject(self, _cmd); + if ( nil == queue ) { + queue = [NSArray array]; + self.bx_popQueue = queue; + } + return queue; +} + +@end + +@implementation UIViewController (BXSafeTransition) + ++ (void)load +{ + // this solution is below system version 8.0. + if ( [UIDevice currentDevice].systemVersion.doubleValue < 8.0 ) { + Method applear_originalMethod = class_getInstanceMethod(self, @selector(viewDidAppear:)); + Method applear_swizzledMethod = class_getInstanceMethod(self, @selector(bx_viewDidAppear:)); + method_exchangeImplementations(applear_originalMethod, applear_swizzledMethod); + + Method disApplear_originalMethod = class_getInstanceMethod(self, @selector(viewDidDisappear:)); + Method disApplear_swizzledMethod = class_getInstanceMethod(self, @selector(bx_viewDidDisappear:)); + method_exchangeImplementations(disApplear_originalMethod, disApplear_swizzledMethod); + } +} + +- (void)bx_viewDidAppear:(BOOL)animated +{ + // reset bx_pushing flag when push finished. + self.navigationController.bx_pushing = NO; + + // reset bx_poping flag when pop canceled. + self.navigationController.bx_poping = NO; + + // goto next push operation + [self.navigationController bx_viewDidAppear]; + + [self bx_viewDidAppear:animated]; +} + +- (void)bx_viewDidDisappear:(BOOL)animated +{ + // reset bx_poping flag when pop finished. + self.bx_navigationController.bx_poping = NO; + + // goto next pop operation + [self.bx_navigationController bx_viewDidDisappear]; + + [self bx_viewDidDisappear:animated]; +} + +#pragma mark - setter & getter +- (void)setBx_navigationController:(UINavigationController *)bx_navigationController +{ + objc_setAssociatedObject(self, @selector(bx_navigationController), bx_navigationController, OBJC_ASSOCIATION_RETAIN); +} + +- (UINavigationController *)bx_navigationController +{ + return objc_getAssociatedObject(self, _cmd); +} + +@end \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..6aa7c13 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# BXSafeTransition + +[![CI Status](http://img.shields.io/travis/phoebus/BXSafeTransition.svg?style=flat)](https://travis-ci.org/phoebus/BXSafeTransition) +[![Version](https://img.shields.io/cocoapods/v/BXSafeTransition.svg?style=flat)](http://cocoapods.org/pods/BXSafeTransition) +[![License](https://img.shields.io/cocoapods/l/BXSafeTransition.svg?style=flat)](http://cocoapods.org/pods/BXSafeTransition) +[![Platform](https://img.shields.io/cocoapods/p/BXSafeTransition.svg?style=flat)](http://cocoapods.org/pods/BXSafeTransition) + +## Usage + +To run the example project, clone the repo, and run `pod install` from the Example directory first. + +## Requirements + +## Installation + +BXSafeTransition is available through [CocoaPods](http://cocoapods.org). To install +it, simply add the following line to your Podfile: + +```ruby +pod "BXSafeTransition" +``` + +## Author + +phoebus, shaozhengxingok@126.com + +## License + +BXSafeTransition is available under the MIT license. See the LICENSE file for more info. diff --git a/_Pods.xcodeproj b/_Pods.xcodeproj new file mode 120000 index 0000000..3c5a8e7 --- /dev/null +++ b/_Pods.xcodeproj @@ -0,0 +1 @@ +Example/Pods/Pods.xcodeproj \ No newline at end of file