├── .DS_Store ├── Example ├── .DS_Store ├── LGSemiModalNavController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LGSemiModalNavController-Example.xcscheme │ └── xcuserdata │ │ └── lukegeiger.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── LGSemiModalNavController.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── LGSemiModalNavController.xccheckout │ └── xcuserdata │ │ └── lukegeiger.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── LGSemiModalNavController │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── LGAppDelegate.h │ ├── LGAppDelegate.m │ ├── LGSemiModalNavController-Info.plist │ ├── LGSemiModalNavController-Prefix.pch │ ├── LGViewController.h │ ├── LGViewController.m │ ├── Launch Screen.xib │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ └── LGSemiModalNavController │ │ │ │ ├── LGSemiModalNavViewController.h │ │ │ │ └── LGSemiModalTransition.h │ │ └── Public │ │ │ └── LGSemiModalNavController │ │ │ ├── LGSemiModalNavViewController.h │ │ │ └── LGSemiModalTransition.h │ ├── Local Podspecs │ │ └── LGSemiModalNavController.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ ├── Pods-LGSemiModalNavController_Example-LGSemiModalNavController-LGSemiModalNavController.xcscheme │ │ │ │ ├── Pods-LGSemiModalNavController_Example-LGSemiModalNavController.xcscheme │ │ │ │ ├── Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-LGSemiModalNavController.xcscheme │ │ │ │ └── Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.xcscheme │ │ └── xcuserdata │ │ │ └── lukegeiger.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Pods-LGSemiModalNavController_Example.xcscheme │ │ │ ├── Pods-LGSemiModalNavController_Tests.xcscheme │ │ │ └── xcschememanagement.plist │ └── Target Support Files │ │ ├── Pods-LGSemiModalNavController_Example-LGSemiModalNavController │ │ ├── Info.plist │ │ ├── Pods-LGSemiModalNavController_Example-LGSemiModalNavController-Private.xcconfig │ │ ├── Pods-LGSemiModalNavController_Example-LGSemiModalNavController-dummy.m │ │ ├── Pods-LGSemiModalNavController_Example-LGSemiModalNavController-prefix.pch │ │ ├── Pods-LGSemiModalNavController_Example-LGSemiModalNavController-umbrella.h │ │ ├── Pods-LGSemiModalNavController_Example-LGSemiModalNavController.modulemap │ │ └── Pods-LGSemiModalNavController_Example-LGSemiModalNavController.xcconfig │ │ ├── Pods-LGSemiModalNavController_Example │ │ ├── Info.plist │ │ ├── Pods-LGSemiModalNavController_Example-acknowledgements.markdown │ │ ├── Pods-LGSemiModalNavController_Example-acknowledgements.plist │ │ ├── Pods-LGSemiModalNavController_Example-dummy.m │ │ ├── Pods-LGSemiModalNavController_Example-environment.h │ │ ├── Pods-LGSemiModalNavController_Example-frameworks.sh │ │ ├── Pods-LGSemiModalNavController_Example-resources.sh │ │ ├── Pods-LGSemiModalNavController_Example-umbrella.h │ │ ├── Pods-LGSemiModalNavController_Example.debug.xcconfig │ │ ├── Pods-LGSemiModalNavController_Example.modulemap │ │ └── Pods-LGSemiModalNavController_Example.release.xcconfig │ │ ├── Pods-LGSemiModalNavController_Tests-LGSemiModalNavController │ │ ├── Info.plist │ │ ├── Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-Private.xcconfig │ │ ├── Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-dummy.m │ │ ├── Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-prefix.pch │ │ ├── Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-umbrella.h │ │ ├── Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.modulemap │ │ └── Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.xcconfig │ │ └── Pods-LGSemiModalNavController_Tests │ │ ├── Info.plist │ │ ├── Pods-LGSemiModalNavController_Tests-acknowledgements.markdown │ │ ├── Pods-LGSemiModalNavController_Tests-acknowledgements.plist │ │ ├── Pods-LGSemiModalNavController_Tests-dummy.m │ │ ├── Pods-LGSemiModalNavController_Tests-environment.h │ │ ├── Pods-LGSemiModalNavController_Tests-frameworks.sh │ │ ├── Pods-LGSemiModalNavController_Tests-resources.sh │ │ ├── Pods-LGSemiModalNavController_Tests-umbrella.h │ │ ├── Pods-LGSemiModalNavController_Tests.debug.xcconfig │ │ ├── Pods-LGSemiModalNavController_Tests.modulemap │ │ └── Pods-LGSemiModalNavController_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LGSemiModalNavController.podspec ├── LICENSE ├── Pod ├── .DS_Store ├── Assets │ └── .gitkeep └── Classes │ ├── .DS_Store │ ├── .gitkeep │ ├── LGSemiModalNavViewController.h │ ├── LGSemiModalNavViewController.m │ ├── LGSemiModalTransition.h │ └── LGSemiModalTransition.m ├── README.md ├── lukegeiger-semi-modal-cocoapod.gif ├── lukegeiger-semi-modal.gif └── lukegeiger-semi-modal.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukegeiger/LGSemiModalNavController/83c63c97a8d15abe853eed33050cb5780817ceb8/.DS_Store -------------------------------------------------------------------------------- /Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukegeiger/LGSemiModalNavController/83c63c97a8d15abe853eed33050cb5780817ceb8/Example/.DS_Store -------------------------------------------------------------------------------- /Example/LGSemiModalNavController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 11 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 12 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 13 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 14 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 15 | 6003F59E195388D20070C39A /* LGAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* LGAppDelegate.m */; }; 16 | 6003F5A7195388D20070C39A /* LGViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* LGViewController.m */; }; 17 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 18 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; 19 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 20 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 21 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; 22 | 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; 23 | 6E69D6B07B3A2EF27575F1EC /* Pods_LGSemiModalNavController_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7CC94A9DA1218E5DEA890866 /* Pods_LGSemiModalNavController_Example.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; 24 | 9AF39BA709A42BB347D49625 /* Pods_LGSemiModalNavController_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E778B5F30E13B834B3F00B2 /* Pods_LGSemiModalNavController_Tests.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; 25 | DFE710271B2CEB5300CAD7DF /* Launch Screen.xib in Resources */ = {isa = PBXBuildFile; fileRef = DFE710261B2CEB5300CAD7DF /* Launch Screen.xib */; }; 26 | /* End PBXBuildFile section */ 27 | 28 | /* Begin PBXContainerItemProxy section */ 29 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = 6003F582195388D10070C39A /* Project object */; 32 | proxyType = 1; 33 | remoteGlobalIDString = 6003F589195388D20070C39A; 34 | remoteInfo = LGSemiModalNavController; 35 | }; 36 | /* End PBXContainerItemProxy section */ 37 | 38 | /* Begin PBXFileReference section */ 39 | 024903B58672B007C104CBE7 /* Pods-LGSemiModalNavController_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LGSemiModalNavController_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests.debug.xcconfig"; sourceTree = ""; }; 40 | 1E778B5F30E13B834B3F00B2 /* Pods_LGSemiModalNavController_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LGSemiModalNavController_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 6003F58A195388D20070C39A /* LGSemiModalNavController_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LGSemiModalNavController_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 43 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 44 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 45 | 6003F595195388D20070C39A /* LGSemiModalNavController-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "LGSemiModalNavController-Info.plist"; sourceTree = ""; }; 46 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 47 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 48 | 6003F59B195388D20070C39A /* LGSemiModalNavController-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "LGSemiModalNavController-Prefix.pch"; sourceTree = ""; }; 49 | 6003F59C195388D20070C39A /* LGAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LGAppDelegate.h; sourceTree = ""; }; 50 | 6003F59D195388D20070C39A /* LGAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LGAppDelegate.m; sourceTree = ""; }; 51 | 6003F5A5195388D20070C39A /* LGViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LGViewController.h; sourceTree = ""; }; 52 | 6003F5A6195388D20070C39A /* LGViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LGViewController.m; sourceTree = ""; }; 53 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 54 | 6003F5AE195388D20070C39A /* LGSemiModalNavController_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LGSemiModalNavController_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 55 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 56 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 57 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 58 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 59 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 60 | 7CC94A9DA1218E5DEA890866 /* Pods_LGSemiModalNavController_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LGSemiModalNavController_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 61 | 8BC1068FD2B105BF8C9F5751 /* Pods-LGSemiModalNavController_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LGSemiModalNavController_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests.release.xcconfig"; sourceTree = ""; }; 62 | 9960FB3965F8FB837671335E /* Pods-LGSemiModalNavController_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LGSemiModalNavController_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example.debug.xcconfig"; sourceTree = ""; }; 63 | 997B804F36DDDA662B80B9EC /* Pods-LGSemiModalNavController_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LGSemiModalNavController_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example.release.xcconfig"; sourceTree = ""; }; 64 | 9D235AB87C3C30BC72130601 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 65 | C70C4E362863E1CB8A1208DA /* LGSemiModalNavController.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LGSemiModalNavController.podspec; path = ../LGSemiModalNavController.podspec; sourceTree = ""; }; 66 | D2866DCC1602B4B75D69A3D5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 67 | DFE710261B2CEB5300CAD7DF /* Launch Screen.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = "Launch Screen.xib"; sourceTree = ""; }; 68 | /* End PBXFileReference section */ 69 | 70 | /* Begin PBXFrameworksBuildPhase section */ 71 | 6003F587195388D20070C39A /* Frameworks */ = { 72 | isa = PBXFrameworksBuildPhase; 73 | buildActionMask = 2147483647; 74 | files = ( 75 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 76 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 77 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 78 | 6E69D6B07B3A2EF27575F1EC /* Pods_LGSemiModalNavController_Example.framework in Frameworks */, 79 | ); 80 | runOnlyForDeploymentPostprocessing = 0; 81 | }; 82 | 6003F5AB195388D20070C39A /* Frameworks */ = { 83 | isa = PBXFrameworksBuildPhase; 84 | buildActionMask = 2147483647; 85 | files = ( 86 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 87 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 88 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 89 | 9AF39BA709A42BB347D49625 /* Pods_LGSemiModalNavController_Tests.framework in Frameworks */, 90 | ); 91 | runOnlyForDeploymentPostprocessing = 0; 92 | }; 93 | /* End PBXFrameworksBuildPhase section */ 94 | 95 | /* Begin PBXGroup section */ 96 | 6003F581195388D10070C39A = { 97 | isa = PBXGroup; 98 | children = ( 99 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 100 | 6003F593195388D20070C39A /* Example for LGSemiModalNavController */, 101 | 6003F5B5195388D20070C39A /* Tests */, 102 | 6003F58C195388D20070C39A /* Frameworks */, 103 | 6003F58B195388D20070C39A /* Products */, 104 | E520D65FA1D2962DFDBEAE97 /* Pods */, 105 | ); 106 | sourceTree = ""; 107 | }; 108 | 6003F58B195388D20070C39A /* Products */ = { 109 | isa = PBXGroup; 110 | children = ( 111 | 6003F58A195388D20070C39A /* LGSemiModalNavController_Example.app */, 112 | 6003F5AE195388D20070C39A /* LGSemiModalNavController_Tests.xctest */, 113 | ); 114 | name = Products; 115 | sourceTree = ""; 116 | }; 117 | 6003F58C195388D20070C39A /* Frameworks */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | 6003F58D195388D20070C39A /* Foundation.framework */, 121 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 122 | 6003F591195388D20070C39A /* UIKit.framework */, 123 | 6003F5AF195388D20070C39A /* XCTest.framework */, 124 | 7CC94A9DA1218E5DEA890866 /* Pods_LGSemiModalNavController_Example.framework */, 125 | 1E778B5F30E13B834B3F00B2 /* Pods_LGSemiModalNavController_Tests.framework */, 126 | ); 127 | name = Frameworks; 128 | sourceTree = ""; 129 | }; 130 | 6003F593195388D20070C39A /* Example for LGSemiModalNavController */ = { 131 | isa = PBXGroup; 132 | children = ( 133 | 6003F59C195388D20070C39A /* LGAppDelegate.h */, 134 | 6003F59D195388D20070C39A /* LGAppDelegate.m */, 135 | 6003F5A5195388D20070C39A /* LGViewController.h */, 136 | 6003F5A6195388D20070C39A /* LGViewController.m */, 137 | DFE710261B2CEB5300CAD7DF /* Launch Screen.xib */, 138 | 6003F5A8195388D20070C39A /* Images.xcassets */, 139 | 6003F594195388D20070C39A /* Supporting Files */, 140 | ); 141 | name = "Example for LGSemiModalNavController"; 142 | path = LGSemiModalNavController; 143 | sourceTree = ""; 144 | }; 145 | 6003F594195388D20070C39A /* Supporting Files */ = { 146 | isa = PBXGroup; 147 | children = ( 148 | 6003F595195388D20070C39A /* LGSemiModalNavController-Info.plist */, 149 | 6003F596195388D20070C39A /* InfoPlist.strings */, 150 | 6003F599195388D20070C39A /* main.m */, 151 | 6003F59B195388D20070C39A /* LGSemiModalNavController-Prefix.pch */, 152 | ); 153 | name = "Supporting Files"; 154 | sourceTree = ""; 155 | }; 156 | 6003F5B5195388D20070C39A /* Tests */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | 6003F5BB195388D20070C39A /* Tests.m */, 160 | 6003F5B6195388D20070C39A /* Supporting Files */, 161 | ); 162 | path = Tests; 163 | sourceTree = ""; 164 | }; 165 | 6003F5B6195388D20070C39A /* Supporting Files */ = { 166 | isa = PBXGroup; 167 | children = ( 168 | 6003F5B7195388D20070C39A /* Tests-Info.plist */, 169 | 6003F5B8195388D20070C39A /* InfoPlist.strings */, 170 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, 171 | ); 172 | name = "Supporting Files"; 173 | sourceTree = ""; 174 | }; 175 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 176 | isa = PBXGroup; 177 | children = ( 178 | C70C4E362863E1CB8A1208DA /* LGSemiModalNavController.podspec */, 179 | 9D235AB87C3C30BC72130601 /* README.md */, 180 | D2866DCC1602B4B75D69A3D5 /* LICENSE */, 181 | ); 182 | name = "Podspec Metadata"; 183 | sourceTree = ""; 184 | }; 185 | E520D65FA1D2962DFDBEAE97 /* Pods */ = { 186 | isa = PBXGroup; 187 | children = ( 188 | 9960FB3965F8FB837671335E /* Pods-LGSemiModalNavController_Example.debug.xcconfig */, 189 | 997B804F36DDDA662B80B9EC /* Pods-LGSemiModalNavController_Example.release.xcconfig */, 190 | 024903B58672B007C104CBE7 /* Pods-LGSemiModalNavController_Tests.debug.xcconfig */, 191 | 8BC1068FD2B105BF8C9F5751 /* Pods-LGSemiModalNavController_Tests.release.xcconfig */, 192 | ); 193 | name = Pods; 194 | sourceTree = ""; 195 | }; 196 | /* End PBXGroup section */ 197 | 198 | /* Begin PBXNativeTarget section */ 199 | 6003F589195388D20070C39A /* LGSemiModalNavController_Example */ = { 200 | isa = PBXNativeTarget; 201 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "LGSemiModalNavController_Example" */; 202 | buildPhases = ( 203 | FF9D5324C73FD7FBFC1CF2F4 /* Check Pods Manifest.lock */, 204 | 6003F586195388D20070C39A /* Sources */, 205 | 6003F587195388D20070C39A /* Frameworks */, 206 | 6003F588195388D20070C39A /* Resources */, 207 | 4513A678AF4731E4B2248403 /* Embed Pods Frameworks */, 208 | C910C0CE9549C4032B8400B1 /* Copy Pods Resources */, 209 | ); 210 | buildRules = ( 211 | ); 212 | dependencies = ( 213 | ); 214 | name = LGSemiModalNavController_Example; 215 | productName = LGSemiModalNavController; 216 | productReference = 6003F58A195388D20070C39A /* LGSemiModalNavController_Example.app */; 217 | productType = "com.apple.product-type.application"; 218 | }; 219 | 6003F5AD195388D20070C39A /* LGSemiModalNavController_Tests */ = { 220 | isa = PBXNativeTarget; 221 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "LGSemiModalNavController_Tests" */; 222 | buildPhases = ( 223 | C2B30FF94A6A9E4B3B174100 /* Check Pods Manifest.lock */, 224 | 6003F5AA195388D20070C39A /* Sources */, 225 | 6003F5AB195388D20070C39A /* Frameworks */, 226 | 6003F5AC195388D20070C39A /* Resources */, 227 | BBE81C4148EBF32B4D8DABD7 /* Embed Pods Frameworks */, 228 | 20E98F6566BA1B2BBEE15F2C /* Copy Pods Resources */, 229 | ); 230 | buildRules = ( 231 | ); 232 | dependencies = ( 233 | 6003F5B4195388D20070C39A /* PBXTargetDependency */, 234 | ); 235 | name = LGSemiModalNavController_Tests; 236 | productName = LGSemiModalNavControllerTests; 237 | productReference = 6003F5AE195388D20070C39A /* LGSemiModalNavController_Tests.xctest */; 238 | productType = "com.apple.product-type.bundle.unit-test"; 239 | }; 240 | /* End PBXNativeTarget section */ 241 | 242 | /* Begin PBXProject section */ 243 | 6003F582195388D10070C39A /* Project object */ = { 244 | isa = PBXProject; 245 | attributes = { 246 | CLASSPREFIX = LG; 247 | LastUpgradeCheck = 0510; 248 | ORGANIZATIONNAME = "Luke Geiger"; 249 | TargetAttributes = { 250 | 6003F5AD195388D20070C39A = { 251 | TestTargetID = 6003F589195388D20070C39A; 252 | }; 253 | }; 254 | }; 255 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "LGSemiModalNavController" */; 256 | compatibilityVersion = "Xcode 3.2"; 257 | developmentRegion = English; 258 | hasScannedForEncodings = 0; 259 | knownRegions = ( 260 | en, 261 | Base, 262 | ); 263 | mainGroup = 6003F581195388D10070C39A; 264 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 265 | projectDirPath = ""; 266 | projectRoot = ""; 267 | targets = ( 268 | 6003F589195388D20070C39A /* LGSemiModalNavController_Example */, 269 | 6003F5AD195388D20070C39A /* LGSemiModalNavController_Tests */, 270 | ); 271 | }; 272 | /* End PBXProject section */ 273 | 274 | /* Begin PBXResourcesBuildPhase section */ 275 | 6003F588195388D20070C39A /* Resources */ = { 276 | isa = PBXResourcesBuildPhase; 277 | buildActionMask = 2147483647; 278 | files = ( 279 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 280 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 281 | DFE710271B2CEB5300CAD7DF /* Launch Screen.xib in Resources */, 282 | ); 283 | runOnlyForDeploymentPostprocessing = 0; 284 | }; 285 | 6003F5AC195388D20070C39A /* Resources */ = { 286 | isa = PBXResourcesBuildPhase; 287 | buildActionMask = 2147483647; 288 | files = ( 289 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, 290 | ); 291 | runOnlyForDeploymentPostprocessing = 0; 292 | }; 293 | /* End PBXResourcesBuildPhase section */ 294 | 295 | /* Begin PBXShellScriptBuildPhase section */ 296 | 20E98F6566BA1B2BBEE15F2C /* Copy Pods Resources */ = { 297 | isa = PBXShellScriptBuildPhase; 298 | buildActionMask = 2147483647; 299 | files = ( 300 | ); 301 | inputPaths = ( 302 | ); 303 | name = "Copy Pods Resources"; 304 | outputPaths = ( 305 | ); 306 | runOnlyForDeploymentPostprocessing = 0; 307 | shellPath = /bin/sh; 308 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests-resources.sh\"\n"; 309 | showEnvVarsInLog = 0; 310 | }; 311 | 4513A678AF4731E4B2248403 /* Embed Pods Frameworks */ = { 312 | isa = PBXShellScriptBuildPhase; 313 | buildActionMask = 2147483647; 314 | files = ( 315 | ); 316 | inputPaths = ( 317 | ); 318 | name = "Embed Pods Frameworks"; 319 | outputPaths = ( 320 | ); 321 | runOnlyForDeploymentPostprocessing = 0; 322 | shellPath = /bin/sh; 323 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example-frameworks.sh\"\n"; 324 | showEnvVarsInLog = 0; 325 | }; 326 | BBE81C4148EBF32B4D8DABD7 /* Embed Pods Frameworks */ = { 327 | isa = PBXShellScriptBuildPhase; 328 | buildActionMask = 2147483647; 329 | files = ( 330 | ); 331 | inputPaths = ( 332 | ); 333 | name = "Embed Pods Frameworks"; 334 | outputPaths = ( 335 | ); 336 | runOnlyForDeploymentPostprocessing = 0; 337 | shellPath = /bin/sh; 338 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests-frameworks.sh\"\n"; 339 | showEnvVarsInLog = 0; 340 | }; 341 | C2B30FF94A6A9E4B3B174100 /* Check Pods Manifest.lock */ = { 342 | isa = PBXShellScriptBuildPhase; 343 | buildActionMask = 2147483647; 344 | files = ( 345 | ); 346 | inputPaths = ( 347 | ); 348 | name = "Check Pods Manifest.lock"; 349 | outputPaths = ( 350 | ); 351 | runOnlyForDeploymentPostprocessing = 0; 352 | shellPath = /bin/sh; 353 | 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"; 354 | showEnvVarsInLog = 0; 355 | }; 356 | C910C0CE9549C4032B8400B1 /* Copy Pods Resources */ = { 357 | isa = PBXShellScriptBuildPhase; 358 | buildActionMask = 2147483647; 359 | files = ( 360 | ); 361 | inputPaths = ( 362 | ); 363 | name = "Copy Pods Resources"; 364 | outputPaths = ( 365 | ); 366 | runOnlyForDeploymentPostprocessing = 0; 367 | shellPath = /bin/sh; 368 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example-resources.sh\"\n"; 369 | showEnvVarsInLog = 0; 370 | }; 371 | FF9D5324C73FD7FBFC1CF2F4 /* Check Pods Manifest.lock */ = { 372 | isa = PBXShellScriptBuildPhase; 373 | buildActionMask = 2147483647; 374 | files = ( 375 | ); 376 | inputPaths = ( 377 | ); 378 | name = "Check Pods Manifest.lock"; 379 | outputPaths = ( 380 | ); 381 | runOnlyForDeploymentPostprocessing = 0; 382 | shellPath = /bin/sh; 383 | 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"; 384 | showEnvVarsInLog = 0; 385 | }; 386 | /* End PBXShellScriptBuildPhase section */ 387 | 388 | /* Begin PBXSourcesBuildPhase section */ 389 | 6003F586195388D20070C39A /* Sources */ = { 390 | isa = PBXSourcesBuildPhase; 391 | buildActionMask = 2147483647; 392 | files = ( 393 | 6003F59E195388D20070C39A /* LGAppDelegate.m in Sources */, 394 | 6003F5A7195388D20070C39A /* LGViewController.m in Sources */, 395 | 6003F59A195388D20070C39A /* main.m in Sources */, 396 | ); 397 | runOnlyForDeploymentPostprocessing = 0; 398 | }; 399 | 6003F5AA195388D20070C39A /* Sources */ = { 400 | isa = PBXSourcesBuildPhase; 401 | buildActionMask = 2147483647; 402 | files = ( 403 | 6003F5BC195388D20070C39A /* Tests.m in Sources */, 404 | ); 405 | runOnlyForDeploymentPostprocessing = 0; 406 | }; 407 | /* End PBXSourcesBuildPhase section */ 408 | 409 | /* Begin PBXTargetDependency section */ 410 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { 411 | isa = PBXTargetDependency; 412 | target = 6003F589195388D20070C39A /* LGSemiModalNavController_Example */; 413 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; 414 | }; 415 | /* End PBXTargetDependency section */ 416 | 417 | /* Begin PBXVariantGroup section */ 418 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 419 | isa = PBXVariantGroup; 420 | children = ( 421 | 6003F597195388D20070C39A /* en */, 422 | ); 423 | name = InfoPlist.strings; 424 | sourceTree = ""; 425 | }; 426 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { 427 | isa = PBXVariantGroup; 428 | children = ( 429 | 6003F5B9195388D20070C39A /* en */, 430 | ); 431 | name = InfoPlist.strings; 432 | sourceTree = ""; 433 | }; 434 | /* End PBXVariantGroup section */ 435 | 436 | /* Begin XCBuildConfiguration section */ 437 | 6003F5BD195388D20070C39A /* Debug */ = { 438 | isa = XCBuildConfiguration; 439 | buildSettings = { 440 | ALWAYS_SEARCH_USER_PATHS = NO; 441 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 442 | CLANG_CXX_LIBRARY = "libc++"; 443 | CLANG_ENABLE_MODULES = YES; 444 | CLANG_ENABLE_OBJC_ARC = YES; 445 | CLANG_WARN_BOOL_CONVERSION = YES; 446 | CLANG_WARN_CONSTANT_CONVERSION = YES; 447 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 448 | CLANG_WARN_EMPTY_BODY = YES; 449 | CLANG_WARN_ENUM_CONVERSION = YES; 450 | CLANG_WARN_INT_CONVERSION = YES; 451 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 452 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 453 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 454 | COPY_PHASE_STRIP = NO; 455 | GCC_C_LANGUAGE_STANDARD = gnu99; 456 | GCC_DYNAMIC_NO_PIC = NO; 457 | GCC_OPTIMIZATION_LEVEL = 0; 458 | GCC_PREPROCESSOR_DEFINITIONS = ( 459 | "DEBUG=1", 460 | "$(inherited)", 461 | ); 462 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 463 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 464 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 465 | GCC_WARN_UNDECLARED_SELECTOR = YES; 466 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 467 | GCC_WARN_UNUSED_FUNCTION = YES; 468 | GCC_WARN_UNUSED_VARIABLE = YES; 469 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 470 | ONLY_ACTIVE_ARCH = YES; 471 | SDKROOT = iphoneos; 472 | TARGETED_DEVICE_FAMILY = "1,2"; 473 | }; 474 | name = Debug; 475 | }; 476 | 6003F5BE195388D20070C39A /* Release */ = { 477 | isa = XCBuildConfiguration; 478 | buildSettings = { 479 | ALWAYS_SEARCH_USER_PATHS = NO; 480 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 481 | CLANG_CXX_LIBRARY = "libc++"; 482 | CLANG_ENABLE_MODULES = YES; 483 | CLANG_ENABLE_OBJC_ARC = YES; 484 | CLANG_WARN_BOOL_CONVERSION = YES; 485 | CLANG_WARN_CONSTANT_CONVERSION = YES; 486 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 487 | CLANG_WARN_EMPTY_BODY = YES; 488 | CLANG_WARN_ENUM_CONVERSION = YES; 489 | CLANG_WARN_INT_CONVERSION = YES; 490 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 491 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 492 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 493 | COPY_PHASE_STRIP = YES; 494 | ENABLE_NS_ASSERTIONS = NO; 495 | GCC_C_LANGUAGE_STANDARD = gnu99; 496 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 497 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 498 | GCC_WARN_UNDECLARED_SELECTOR = YES; 499 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 500 | GCC_WARN_UNUSED_FUNCTION = YES; 501 | GCC_WARN_UNUSED_VARIABLE = YES; 502 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 503 | SDKROOT = iphoneos; 504 | TARGETED_DEVICE_FAMILY = "1,2"; 505 | VALIDATE_PRODUCT = YES; 506 | }; 507 | name = Release; 508 | }; 509 | 6003F5C0195388D20070C39A /* Debug */ = { 510 | isa = XCBuildConfiguration; 511 | baseConfigurationReference = 9960FB3965F8FB837671335E /* Pods-LGSemiModalNavController_Example.debug.xcconfig */; 512 | buildSettings = { 513 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 514 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 515 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 516 | GCC_PREFIX_HEADER = "LGSemiModalNavController/LGSemiModalNavController-Prefix.pch"; 517 | INFOPLIST_FILE = "LGSemiModalNavController/LGSemiModalNavController-Info.plist"; 518 | MODULE_NAME = ExampleApp; 519 | PRODUCT_NAME = "$(TARGET_NAME)"; 520 | WRAPPER_EXTENSION = app; 521 | }; 522 | name = Debug; 523 | }; 524 | 6003F5C1195388D20070C39A /* Release */ = { 525 | isa = XCBuildConfiguration; 526 | baseConfigurationReference = 997B804F36DDDA662B80B9EC /* Pods-LGSemiModalNavController_Example.release.xcconfig */; 527 | buildSettings = { 528 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 529 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 530 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 531 | GCC_PREFIX_HEADER = "LGSemiModalNavController/LGSemiModalNavController-Prefix.pch"; 532 | INFOPLIST_FILE = "LGSemiModalNavController/LGSemiModalNavController-Info.plist"; 533 | MODULE_NAME = ExampleApp; 534 | PRODUCT_NAME = "$(TARGET_NAME)"; 535 | WRAPPER_EXTENSION = app; 536 | }; 537 | name = Release; 538 | }; 539 | 6003F5C3195388D20070C39A /* Debug */ = { 540 | isa = XCBuildConfiguration; 541 | baseConfigurationReference = 024903B58672B007C104CBE7 /* Pods-LGSemiModalNavController_Tests.debug.xcconfig */; 542 | buildSettings = { 543 | BUNDLE_LOADER = "$(TEST_HOST)"; 544 | FRAMEWORK_SEARCH_PATHS = ( 545 | "$(SDKROOT)/Developer/Library/Frameworks", 546 | "$(inherited)", 547 | "$(DEVELOPER_FRAMEWORKS_DIR)", 548 | ); 549 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 550 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 551 | GCC_PREPROCESSOR_DEFINITIONS = ( 552 | "DEBUG=1", 553 | "$(inherited)", 554 | ); 555 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 556 | PRODUCT_NAME = "$(TARGET_NAME)"; 557 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LGSemiModalNavController_Example.app/LGSemiModalNavController_Example"; 558 | WRAPPER_EXTENSION = xctest; 559 | }; 560 | name = Debug; 561 | }; 562 | 6003F5C4195388D20070C39A /* Release */ = { 563 | isa = XCBuildConfiguration; 564 | baseConfigurationReference = 8BC1068FD2B105BF8C9F5751 /* Pods-LGSemiModalNavController_Tests.release.xcconfig */; 565 | buildSettings = { 566 | BUNDLE_LOADER = "$(TEST_HOST)"; 567 | FRAMEWORK_SEARCH_PATHS = ( 568 | "$(SDKROOT)/Developer/Library/Frameworks", 569 | "$(inherited)", 570 | "$(DEVELOPER_FRAMEWORKS_DIR)", 571 | ); 572 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 573 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 574 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 575 | PRODUCT_NAME = "$(TARGET_NAME)"; 576 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LGSemiModalNavController_Example.app/LGSemiModalNavController_Example"; 577 | WRAPPER_EXTENSION = xctest; 578 | }; 579 | name = Release; 580 | }; 581 | /* End XCBuildConfiguration section */ 582 | 583 | /* Begin XCConfigurationList section */ 584 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "LGSemiModalNavController" */ = { 585 | isa = XCConfigurationList; 586 | buildConfigurations = ( 587 | 6003F5BD195388D20070C39A /* Debug */, 588 | 6003F5BE195388D20070C39A /* Release */, 589 | ); 590 | defaultConfigurationIsVisible = 0; 591 | defaultConfigurationName = Release; 592 | }; 593 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "LGSemiModalNavController_Example" */ = { 594 | isa = XCConfigurationList; 595 | buildConfigurations = ( 596 | 6003F5C0195388D20070C39A /* Debug */, 597 | 6003F5C1195388D20070C39A /* Release */, 598 | ); 599 | defaultConfigurationIsVisible = 0; 600 | defaultConfigurationName = Release; 601 | }; 602 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "LGSemiModalNavController_Tests" */ = { 603 | isa = XCConfigurationList; 604 | buildConfigurations = ( 605 | 6003F5C3195388D20070C39A /* Debug */, 606 | 6003F5C4195388D20070C39A /* Release */, 607 | ); 608 | defaultConfigurationIsVisible = 0; 609 | defaultConfigurationName = Release; 610 | }; 611 | /* End XCConfigurationList section */ 612 | }; 613 | rootObject = 6003F582195388D10070C39A /* Project object */; 614 | } 615 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController.xcodeproj/xcshareddata/xcschemes/LGSemiModalNavController-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 61 | 63 | 69 | 70 | 71 | 72 | 73 | 74 | 80 | 82 | 88 | 89 | 90 | 91 | 93 | 94 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController.xcodeproj/xcuserdata/lukegeiger.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SuppressBuildableAutocreation 6 | 7 | 6003F589195388D20070C39A 8 | 9 | primary 10 | 11 | 12 | 6003F5AD195388D20070C39A 13 | 14 | primary 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController.xcworkspace/xcshareddata/LGSemiModalNavController.xccheckout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDESourceControlProjectFavoriteDictionaryKey 6 | 7 | IDESourceControlProjectIdentifier 8 | D6B41414-1F57-4848-A9D5-3F627A027412 9 | IDESourceControlProjectName 10 | LGSemiModalNavController 11 | IDESourceControlProjectOriginsDictionary 12 | 13 | C790B7FBD59B856B7BD307FD2B5B223432870780 14 | https://github.com/lukegeiger/LGSemiModalNavController.git 15 | 16 | IDESourceControlProjectPath 17 | Example/LGSemiModalNavController.xcworkspace 18 | IDESourceControlProjectRelativeInstallPathDictionary 19 | 20 | C790B7FBD59B856B7BD307FD2B5B223432870780 21 | ../.. 22 | 23 | IDESourceControlProjectURL 24 | https://github.com/lukegeiger/LGSemiModalNavController.git 25 | IDESourceControlProjectVersion 26 | 111 27 | IDESourceControlProjectWCCIdentifier 28 | C790B7FBD59B856B7BD307FD2B5B223432870780 29 | IDESourceControlProjectWCConfigurations 30 | 31 | 32 | IDESourceControlRepositoryExtensionIdentifierKey 33 | public.vcs.git 34 | IDESourceControlWCCIdentifierKey 35 | C790B7FBD59B856B7BD307FD2B5B223432870780 36 | IDESourceControlWCCName 37 | LGSemiModalNavController 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController.xcworkspace/xcuserdata/lukegeiger.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukegeiger/LGSemiModalNavController/83c63c97a8d15abe853eed33050cb5780817ceb8/Example/LGSemiModalNavController.xcworkspace/xcuserdata/lukegeiger.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/LGSemiModalNavController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "40x40", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "60x60", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "ipad", 20 | "size" : "29x29", 21 | "scale" : "1x" 22 | }, 23 | { 24 | "idiom" : "ipad", 25 | "size" : "29x29", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "ipad", 30 | "size" : "40x40", 31 | "scale" : "1x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "40x40", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "76x76", 41 | "scale" : "1x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "76x76", 46 | "scale" : "2x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "orientation" : "portrait", 20 | "idiom" : "ipad", 21 | "extent" : "full-screen", 22 | "minimum-system-version" : "7.0", 23 | "scale" : "1x" 24 | }, 25 | { 26 | "orientation" : "landscape", 27 | "idiom" : "ipad", 28 | "extent" : "full-screen", 29 | "minimum-system-version" : "7.0", 30 | "scale" : "1x" 31 | }, 32 | { 33 | "orientation" : "portrait", 34 | "idiom" : "ipad", 35 | "extent" : "full-screen", 36 | "minimum-system-version" : "7.0", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "orientation" : "landscape", 41 | "idiom" : "ipad", 42 | "extent" : "full-screen", 43 | "minimum-system-version" : "7.0", 44 | "scale" : "2x" 45 | } 46 | ], 47 | "info" : { 48 | "version" : 1, 49 | "author" : "xcode" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController/LGAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // LGAppDelegate.h 3 | // LGSemiModalNavController 4 | // 5 | // Created by CocoaPods on 06/13/2015. 6 | // Copyright (c) 2014 Luke Geiger. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface LGAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController/LGAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // LGAppDelegate.m 3 | // LGSemiModalNavController 4 | // 5 | // Created by CocoaPods on 06/13/2015. 6 | // Copyright (c) 2014 Luke Geiger. All rights reserved. 7 | // 8 | 9 | #import "LGAppDelegate.h" 10 | #import "LGViewController.h" 11 | @implementation LGAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 14 | 15 | [self appearance]; 16 | 17 | LGViewController *lg = [[LGViewController alloc]initWithFormat:LGViewControllerFormatTapMe]; 18 | UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:lg]; 19 | 20 | self.window = [[UIWindow alloc]initWithFrame:[[UIScreen mainScreen]bounds]]; 21 | self.window.rootViewController = nav; 22 | [self.window makeKeyAndVisible]; 23 | 24 | return YES; 25 | } 26 | 27 | -(void)appearance 28 | { 29 | NSDictionary *textTitleOptions = [NSDictionary dictionaryWithObjectsAndKeys:[UIFont fontWithName:@"HelveticaNeue-Light" size:14], NSFontAttributeName, nil]; 30 | [[UINavigationBar appearance] setTitleTextAttributes: textTitleOptions]; 31 | } 32 | 33 | 34 | - (void)applicationWillResignActive:(UIApplication *)application 35 | { 36 | // 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. 37 | // 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. 38 | } 39 | 40 | - (void)applicationDidEnterBackground:(UIApplication *)application 41 | { 42 | // 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. 43 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 44 | } 45 | 46 | - (void)applicationWillEnterForeground:(UIApplication *)application 47 | { 48 | // 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. 49 | } 50 | 51 | - (void)applicationDidBecomeActive:(UIApplication *)application 52 | { 53 | // 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. 54 | } 55 | 56 | - (void)applicationWillTerminate:(UIApplication *)application 57 | { 58 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 59 | } 60 | 61 | @end 62 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController/LGSemiModalNavController-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | Launch Screen 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UISupportedInterfaceOrientations~ipad 40 | 41 | UIInterfaceOrientationPortrait 42 | UIInterfaceOrientationPortraitUpsideDown 43 | UIInterfaceOrientationLandscapeLeft 44 | UIInterfaceOrientationLandscapeRight 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController/LGSemiModalNavController-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | @import UIKit; 15 | @import Foundation; 16 | #endif 17 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController/LGViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LGViewController.h 3 | // LGSemiModalNavController 4 | // 5 | // Created by Luke Geiger on 06/13/2015. 6 | // Copyright (c) 2014 Luke Geiger. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | typedef enum : NSUInteger { 12 | LGViewControllerFormatTapMe, 13 | LGViewControllerFormatGoBack, 14 | } LGViewControllerFormat; 15 | 16 | @interface LGViewController : UIViewController 17 | 18 | -(id)initWithFormat:(LGViewControllerFormat)format; 19 | 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController/LGViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // LGViewController.m 3 | // LGSemiModalNavController 4 | // 5 | // Created by Luke Geiger on 06/13/2015. 6 | // Copyright (c) 2014 Luke Geiger. All rights reserved. 7 | // 8 | 9 | #import "LGViewController.h" 10 | #import "LGSemiModalNavViewController.h" 11 | 12 | @interface LGViewController () 13 | @property (nonatomic, assign) LGViewControllerFormat format; 14 | @end 15 | 16 | @implementation LGViewController 17 | 18 | #pragma mark - Life 19 | 20 | -(id)initWithFormat:(LGViewControllerFormat)format{ 21 | 22 | self = [super init]; 23 | if (self) { 24 | _format = format; 25 | } 26 | return self; 27 | } 28 | 29 | 30 | - (void)loadView { 31 | [super loadView]; 32 | 33 | self.navigationItem.title = @"LGSemiModal"; 34 | self.view.backgroundColor = [UIColor whiteColor]; 35 | 36 | UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect]; 37 | button.frame = CGRectMake((self.view.frame.size.width-280)/2, (self.view.frame.size.height-40)/2, 280, 40); 38 | button.clipsToBounds = YES; 39 | button.layer.cornerRadius = 2; 40 | button.titleLabel.font = [UIFont fontWithName:@"HelveticaNeue-Light" size:12]; 41 | button.layer.borderWidth = 1; 42 | button.layer.borderColor = [UIColor colorWithRed:17/255. green:159/255. blue:194/255. alpha:1.0].CGColor; 43 | [button setTitleColor:[UIColor colorWithRed:17/255. green:159/255. blue:194/255. alpha:1.0] forState:UIControlStateNormal]; 44 | 45 | if (_format == LGViewControllerFormatTapMe) { 46 | [button addTarget:self action:@selector(buttonWasPressed) forControlEvents:UIControlEventTouchUpInside]; 47 | [button setTitle:@"TAP ME" forState:UIControlStateNormal]; 48 | } 49 | else{ 50 | [button addTarget:self action:@selector(dismissViewControllerWasPressed) forControlEvents:UIControlEventTouchUpInside]; 51 | [button setTitle:@"GO BACK" forState:UIControlStateNormal]; 52 | } 53 | 54 | [self.view addSubview:button]; 55 | } 56 | 57 | 58 | #pragma mark Actions 59 | 60 | -(void)buttonWasPressed{ 61 | LGViewController *lgVC = [[LGViewController alloc]initWithFormat:LGViewControllerFormatGoBack]; 62 | LGSemiModalNavViewController *semiModal = [[LGSemiModalNavViewController alloc]initWithRootViewController:lgVC]; 63 | semiModal.view.frame = CGRectMake(0, 0, self.view.frame.size.width, 400); 64 | 65 | semiModal.backgroundShadeColor = [UIColor blackColor]; 66 | semiModal.animationSpeed = 0.35f; 67 | semiModal.tapDismissEnabled = YES; 68 | semiModal.backgroundShadeAlpha = 0.4; 69 | semiModal.scaleTransform = CGAffineTransformMakeScale(.94, .94); 70 | 71 | [self presentViewController:semiModal animated:YES completion:nil]; 72 | } 73 | 74 | -(void)dismissViewControllerWasPressed{ 75 | [self dismissViewControllerAnimated:YES completion:nil]; 76 | } 77 | 78 | @end 79 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController/Launch Screen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 23 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/LGSemiModalNavController/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // LGSemiModalNavController 4 | // 5 | // Created by Luke Geiger on 06/13/2015. 6 | // Copyright (c) 2014 Luke Geiger. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | #import "LGAppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) 13 | { 14 | @autoreleasepool { 15 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([LGAppDelegate class])); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | use_frameworks! 3 | 4 | target 'LGSemiModalNavController_Example', :exclusive => true do 5 | pod "LGSemiModalNavController", :path => "../" 6 | end 7 | 8 | target 'LGSemiModalNavController_Tests', :exclusive => true do 9 | pod "LGSemiModalNavController", :path => "../" 10 | 11 | 12 | end 13 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - LGSemiModalNavController (0.2.0) 3 | 4 | DEPENDENCIES: 5 | - LGSemiModalNavController (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | LGSemiModalNavController: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | LGSemiModalNavController: ba49f8cbc24638be981cbca8a526f66b5dd90414 13 | 14 | COCOAPODS: 0.37.2 15 | -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LGSemiModalNavController/LGSemiModalNavViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LGSemiModalNavViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LGSemiModalNavController/LGSemiModalTransition.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LGSemiModalTransition.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/LGSemiModalNavController/LGSemiModalNavViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LGSemiModalNavViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/LGSemiModalNavController/LGSemiModalTransition.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LGSemiModalTransition.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/LGSemiModalNavController.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "LGSemiModalNavController", 3 | "version": "0.2.0", 4 | "summary": "A UINavigationController subclass that presents itself a dynamic amount", 5 | "description": "A UINavigationController subclass that presents itself a dynamic amount in a view controller using the UIViewControllerAnimatedTransitioning protocol.\n", 6 | "homepage": "https://github.com/lukegeiger/LGSemiModalNavController", 7 | "license": "MIT", 8 | "authors": { 9 | "Luke Geiger": "lukejamesgeiger@gmail.com" 10 | }, 11 | "source": { 12 | "git": "https://github.com/lukegeiger/LGSemiModalNavController.git", 13 | "tag": "0.2.0" 14 | }, 15 | "social_media_url": "https://twitter.com/lukejgeiger", 16 | "platforms": { 17 | "ios": "7.0" 18 | }, 19 | "requires_arc": true, 20 | "source_files": "Pod/Classes/**/*", 21 | "resource_bundles": { 22 | "LGSemiModalNavController": [ 23 | "Pod/Assets/*.png" 24 | ] 25 | }, 26 | "frameworks": "UIKit" 27 | } 28 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - LGSemiModalNavController (0.2.0) 3 | 4 | DEPENDENCIES: 5 | - LGSemiModalNavController (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | LGSemiModalNavController: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | LGSemiModalNavController: ba49f8cbc24638be981cbca8a526f66b5dd90414 13 | 14 | COCOAPODS: 0.37.2 15 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 06C3BBBE6027933E3AF9BE51 /* LGSemiModalTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 741D16CD9D911D6E8C1F4BFF /* LGSemiModalTransition.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 0ED535D4FEA0CF42E8903D96 /* LGSemiModalNavController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = EF95F33F7FC829B21CCD786D /* LGSemiModalNavController.bundle */; }; 12 | 2356E75A2F13899B39CB108A /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E82F70812B466693ED2074A /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 2E02E54C36A4125E42B9E551 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F79C6B62F07D3A03738B5012 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 44FDFAD617DB6CDB13F4B0BE /* Pods-LGSemiModalNavController_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 33B3E50BFA1B41707399CE5F /* Pods-LGSemiModalNavController_Example-dummy.m */; }; 15 | 49D346AF396C16AC00734276 /* LGSemiModalNavViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F5DABD598C6D5ECB5D9D24F /* LGSemiModalNavViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | 53F7967DD21DAD1F686878D7 /* LGSemiModalNavViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F5DABD598C6D5ECB5D9D24F /* LGSemiModalNavViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | 5E9AD585CF36FB6ADE88599B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2CE4D5D305B4A59B42D7DBA2 /* Foundation.framework */; }; 18 | 6A76D220079D936BFA33A6CB /* LGSemiModalTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = E0ACD9B4797F0ED5A149798D /* LGSemiModalTransition.m */; }; 19 | 7173893779DCD5DBF722CB65 /* Pods-LGSemiModalNavController_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DD92EEE07511E6EA4B91E62E /* Pods-LGSemiModalNavController_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 20 | 9DCCE8BF7250E88A1C8369A5 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DA721800D9BE4F34C78442B /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-dummy.m */; }; 21 | 9EB81DB0C9BEBADD27EEB819 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2CE4D5D305B4A59B42D7DBA2 /* Foundation.framework */; }; 22 | AB85292CF307D3B870A23442 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2986F62EBFF193ED622ABE91 /* UIKit.framework */; }; 23 | B377FDAF92061F26AF5B00BD /* Pods-LGSemiModalNavController_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 40E52A0A49059D595FF9DE57 /* Pods-LGSemiModalNavController_Tests-dummy.m */; }; 24 | BA0DC3618B5623A9B80C668F /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BC55C0E6E1536F733D4C25F4 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-dummy.m */; }; 25 | BCDBBBF95CA956200B29F263 /* LGSemiModalTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = E0ACD9B4797F0ED5A149798D /* LGSemiModalTransition.m */; }; 26 | DE93F767D7DF494A310DEBD7 /* LGSemiModalNavViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B96A65B903F14B3E28F717B1 /* LGSemiModalNavViewController.m */; }; 27 | DFE69C9AC4890873D51AEFC2 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2986F62EBFF193ED622ABE91 /* UIKit.framework */; }; 28 | E422A2E7569CD249AA9B9373 /* LGSemiModalNavViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B96A65B903F14B3E28F717B1 /* LGSemiModalNavViewController.m */; }; 29 | E9F34AB1E98E89457EAD7C2F /* Pods-LGSemiModalNavController_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7A050DB4A9677B809357AB /* Pods-LGSemiModalNavController_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 30 | F161472BF0FB2E1074DBCB42 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2CE4D5D305B4A59B42D7DBA2 /* Foundation.framework */; }; 31 | F3E3C0596A8B29FB0D11105E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2CE4D5D305B4A59B42D7DBA2 /* Foundation.framework */; }; 32 | F5AB35C6C0018A70A61B7864 /* LGSemiModalTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 741D16CD9D911D6E8C1F4BFF /* LGSemiModalTransition.h */; settings = {ATTRIBUTES = (Public, ); }; }; 33 | F831E0961780F293CA533B74 /* LGSemiModalNavController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = E633F6AF1FC783F1BA5F149B /* LGSemiModalNavController.bundle */; }; 34 | /* End PBXBuildFile section */ 35 | 36 | /* Begin PBXContainerItemProxy section */ 37 | 0BAB1DB0CBD59949C79DA533 /* PBXContainerItemProxy */ = { 38 | isa = PBXContainerItemProxy; 39 | containerPortal = F1A4DD188608200FE06A7CA0 /* Project object */; 40 | proxyType = 1; 41 | remoteGlobalIDString = 25705D7778791F63B3A98B02; 42 | remoteInfo = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController"; 43 | }; 44 | 1BC01F73CE11CA46E061B953 /* PBXContainerItemProxy */ = { 45 | isa = PBXContainerItemProxy; 46 | containerPortal = F1A4DD188608200FE06A7CA0 /* Project object */; 47 | proxyType = 1; 48 | remoteGlobalIDString = 5F8471CFBED226BABB6F142B; 49 | remoteInfo = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-LGSemiModalNavController"; 50 | }; 51 | F233FA499D5BF46A020C6590 /* PBXContainerItemProxy */ = { 52 | isa = PBXContainerItemProxy; 53 | containerPortal = F1A4DD188608200FE06A7CA0 /* Project object */; 54 | proxyType = 1; 55 | remoteGlobalIDString = 9CA4DA8C1936165805EE3FF0; 56 | remoteInfo = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController"; 57 | }; 58 | F27A4755745B2C3796AFD8F9 /* PBXContainerItemProxy */ = { 59 | isa = PBXContainerItemProxy; 60 | containerPortal = F1A4DD188608200FE06A7CA0 /* Project object */; 61 | proxyType = 1; 62 | remoteGlobalIDString = 1C82EE6C1919724D5358D190; 63 | remoteInfo = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController-LGSemiModalNavController"; 64 | }; 65 | /* End PBXContainerItemProxy section */ 66 | 67 | /* Begin PBXFileReference section */ 68 | 0EA8AAB550003F234AE739C0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Info.plist"; sourceTree = ""; }; 69 | 0FFA41021CE18C69AD1A89DE /* Pods-LGSemiModalNavController_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LGSemiModalNavController_Tests-frameworks.sh"; sourceTree = ""; }; 70 | 13E7AF3381ACD166507681F2 /* Pods-LGSemiModalNavController_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LGSemiModalNavController_Example.release.xcconfig"; sourceTree = ""; }; 71 | 17973DC66DF1D011D44C9897 /* Pods-LGSemiModalNavController_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LGSemiModalNavController_Tests.debug.xcconfig"; sourceTree = ""; }; 72 | 258C08855365F63C70EC9AD4 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController-Private.xcconfig"; sourceTree = ""; }; 73 | 28CF6ABCA98593F0D8098864 /* Pods-LGSemiModalNavController_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-LGSemiModalNavController_Tests-acknowledgements.markdown"; sourceTree = ""; }; 74 | 2986F62EBFF193ED622ABE91 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; 75 | 2B3496AEC9092E07678DD69D /* Pods-LGSemiModalNavController_Example-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-LGSemiModalNavController_Example-environment.h"; sourceTree = ""; }; 76 | 2C1D57CF92772D82C95CB205 /* Pods-LGSemiModalNavController_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LGSemiModalNavController_Tests.release.xcconfig"; sourceTree = ""; }; 77 | 2C6F8CD49F418525DA1F885B /* LGSemiModalNavController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LGSemiModalNavController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 78 | 2CE4D5D305B4A59B42D7DBA2 /* 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; }; 79 | 33B3E50BFA1B41707399CE5F /* Pods-LGSemiModalNavController_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-LGSemiModalNavController_Example-dummy.m"; sourceTree = ""; }; 80 | 36833D11709A7D35E72F866B /* Pods-LGSemiModalNavController_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-LGSemiModalNavController_Example-acknowledgements.markdown"; sourceTree = ""; }; 81 | 40E52A0A49059D595FF9DE57 /* Pods-LGSemiModalNavController_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-LGSemiModalNavController_Tests-dummy.m"; sourceTree = ""; }; 82 | 4CC6F182E1F863098602C527 /* Pods_LGSemiModalNavController_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LGSemiModalNavController_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 83 | 4F5DABD598C6D5ECB5D9D24F /* LGSemiModalNavViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LGSemiModalNavViewController.h; sourceTree = ""; }; 84 | 5153AC19A1B287C66D167DC5 /* Pods-LGSemiModalNavController_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LGSemiModalNavController_Example-frameworks.sh"; sourceTree = ""; }; 85 | 53E6AD52B87ED8B07FB03C30 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 86 | 5DA721800D9BE4F34C78442B /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-dummy.m"; path = "../Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-dummy.m"; sourceTree = ""; }; 87 | 5E82F70812B466693ED2074A /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController-umbrella.h"; sourceTree = ""; }; 88 | 63B54ED0A357726AEF08ACC7 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.xcconfig"; path = "../Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.xcconfig"; sourceTree = ""; }; 89 | 6CD133B95DB8DB56B7C84560 /* Pods-LGSemiModalNavController_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-LGSemiModalNavController_Tests.modulemap"; sourceTree = ""; }; 90 | 741D16CD9D911D6E8C1F4BFF /* LGSemiModalTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LGSemiModalTransition.h; sourceTree = ""; }; 91 | 7B6BF84A4936B20FCBB52BFE /* Pods-LGSemiModalNavController_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-LGSemiModalNavController_Example-acknowledgements.plist"; sourceTree = ""; }; 92 | 8BBFC6A1ABA832E2460DBD42 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; name = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.modulemap"; path = "../Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.modulemap"; sourceTree = ""; }; 93 | 8F79FD05BFAEEFB6A8138FD5 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController.modulemap"; sourceTree = ""; }; 94 | 99C7DC85D15462C90790EEA5 /* Pods-LGSemiModalNavController_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LGSemiModalNavController_Example.debug.xcconfig"; sourceTree = ""; }; 95 | 9E056E29910F0EF4E101FCA0 /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 96 | 9F3E182E1A4F8989B6B573A4 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController.xcconfig"; sourceTree = ""; }; 97 | A0776A3BAEDEAA19F1C97961 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 98 | A699BC76CC1F002BE29B4E34 /* Pods_LGSemiModalNavController_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LGSemiModalNavController_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 99 | B2A33240B8CB528EAC0576C6 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-prefix.pch"; path = "../Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-prefix.pch"; sourceTree = ""; }; 100 | B2E7E007E8D53F8F4C6DD46A /* Pods-LGSemiModalNavController_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LGSemiModalNavController_Tests-resources.sh"; sourceTree = ""; }; 101 | B96A65B903F14B3E28F717B1 /* LGSemiModalNavViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LGSemiModalNavViewController.m; sourceTree = ""; }; 102 | BC1ADFD5D536560972DB835C /* Pods-LGSemiModalNavController_Tests-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-LGSemiModalNavController_Tests-environment.h"; sourceTree = ""; }; 103 | BC55C0E6E1536F733D4C25F4 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController-dummy.m"; sourceTree = ""; }; 104 | C009C05E7B1A831AED17E63A /* LGSemiModalNavController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LGSemiModalNavController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 105 | C8511FC685C79B232DD3F414 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-Private.xcconfig"; path = "../Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-Private.xcconfig"; sourceTree = ""; }; 106 | CD8C2953D309BA0E4E5A4346 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController-prefix.pch"; sourceTree = ""; }; 107 | D501B9FA115CC92173BF065A /* Pods-LGSemiModalNavController_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-LGSemiModalNavController_Tests-acknowledgements.plist"; sourceTree = ""; }; 108 | DD92EEE07511E6EA4B91E62E /* Pods-LGSemiModalNavController_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-LGSemiModalNavController_Tests-umbrella.h"; sourceTree = ""; }; 109 | DE7A050DB4A9677B809357AB /* Pods-LGSemiModalNavController_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-LGSemiModalNavController_Example-umbrella.h"; sourceTree = ""; }; 110 | E0ACD9B4797F0ED5A149798D /* LGSemiModalTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LGSemiModalTransition.m; sourceTree = ""; }; 111 | E633F6AF1FC783F1BA5F149B /* LGSemiModalNavController.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LGSemiModalNavController.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 112 | EE34948EFED30328D1AA2603 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 113 | EF95F33F7FC829B21CCD786D /* LGSemiModalNavController.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LGSemiModalNavController.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 114 | F79C6B62F07D3A03738B5012 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-umbrella.h"; path = "../Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-umbrella.h"; sourceTree = ""; }; 115 | FDA00443DAA8E61C621D405D /* Pods-LGSemiModalNavController_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LGSemiModalNavController_Example-resources.sh"; sourceTree = ""; }; 116 | FF98B3BE9F02D880FC056900 /* Pods-LGSemiModalNavController_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-LGSemiModalNavController_Example.modulemap"; sourceTree = ""; }; 117 | /* End PBXFileReference section */ 118 | 119 | /* Begin PBXFrameworksBuildPhase section */ 120 | 4094B9D5A8172B1F424C48AD /* Frameworks */ = { 121 | isa = PBXFrameworksBuildPhase; 122 | buildActionMask = 2147483647; 123 | files = ( 124 | 9EB81DB0C9BEBADD27EEB819 /* Foundation.framework in Frameworks */, 125 | ); 126 | runOnlyForDeploymentPostprocessing = 0; 127 | }; 128 | 591368E70C26E3F5D91F7262 /* Frameworks */ = { 129 | isa = PBXFrameworksBuildPhase; 130 | buildActionMask = 2147483647; 131 | files = ( 132 | ); 133 | runOnlyForDeploymentPostprocessing = 0; 134 | }; 135 | 9A6932B90C1989262B3904D4 /* Frameworks */ = { 136 | isa = PBXFrameworksBuildPhase; 137 | buildActionMask = 2147483647; 138 | files = ( 139 | F161472BF0FB2E1074DBCB42 /* Foundation.framework in Frameworks */, 140 | ); 141 | runOnlyForDeploymentPostprocessing = 0; 142 | }; 143 | B280A059870F067AB5E6E197 /* Frameworks */ = { 144 | isa = PBXFrameworksBuildPhase; 145 | buildActionMask = 2147483647; 146 | files = ( 147 | ); 148 | runOnlyForDeploymentPostprocessing = 0; 149 | }; 150 | CE34B847A209488311A04A03 /* Frameworks */ = { 151 | isa = PBXFrameworksBuildPhase; 152 | buildActionMask = 2147483647; 153 | files = ( 154 | 5E9AD585CF36FB6ADE88599B /* Foundation.framework in Frameworks */, 155 | AB85292CF307D3B870A23442 /* UIKit.framework in Frameworks */, 156 | ); 157 | runOnlyForDeploymentPostprocessing = 0; 158 | }; 159 | E5E59B8CC407A8FCD295B51C /* Frameworks */ = { 160 | isa = PBXFrameworksBuildPhase; 161 | buildActionMask = 2147483647; 162 | files = ( 163 | F3E3C0596A8B29FB0D11105E /* Foundation.framework in Frameworks */, 164 | DFE69C9AC4890873D51AEFC2 /* UIKit.framework in Frameworks */, 165 | ); 166 | runOnlyForDeploymentPostprocessing = 0; 167 | }; 168 | /* End PBXFrameworksBuildPhase section */ 169 | 170 | /* Begin PBXGroup section */ 171 | 259B4FAE4C2DD2920C29A7E4 /* Support Files */ = { 172 | isa = PBXGroup; 173 | children = ( 174 | A0776A3BAEDEAA19F1C97961 /* Info.plist */, 175 | 0EA8AAB550003F234AE739C0 /* Info.plist */, 176 | 8F79FD05BFAEEFB6A8138FD5 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController.modulemap */, 177 | 9F3E182E1A4F8989B6B573A4 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController.xcconfig */, 178 | 258C08855365F63C70EC9AD4 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-Private.xcconfig */, 179 | BC55C0E6E1536F733D4C25F4 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-dummy.m */, 180 | CD8C2953D309BA0E4E5A4346 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-prefix.pch */, 181 | 5E82F70812B466693ED2074A /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-umbrella.h */, 182 | 8BBFC6A1ABA832E2460DBD42 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.modulemap */, 183 | 63B54ED0A357726AEF08ACC7 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.xcconfig */, 184 | C8511FC685C79B232DD3F414 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-Private.xcconfig */, 185 | 5DA721800D9BE4F34C78442B /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-dummy.m */, 186 | B2A33240B8CB528EAC0576C6 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-prefix.pch */, 187 | F79C6B62F07D3A03738B5012 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-umbrella.h */, 188 | ); 189 | name = "Support Files"; 190 | path = "Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController"; 191 | sourceTree = ""; 192 | }; 193 | 324E1E7722BAD47AFAB7E246 /* Frameworks */ = { 194 | isa = PBXGroup; 195 | children = ( 196 | C84A9FF7A25BA642E7DABCDE /* iOS */, 197 | ); 198 | name = Frameworks; 199 | sourceTree = ""; 200 | }; 201 | 47E4091C273BE7BDFE8D3A36 /* Classes */ = { 202 | isa = PBXGroup; 203 | children = ( 204 | 4F5DABD598C6D5ECB5D9D24F /* LGSemiModalNavViewController.h */, 205 | B96A65B903F14B3E28F717B1 /* LGSemiModalNavViewController.m */, 206 | 741D16CD9D911D6E8C1F4BFF /* LGSemiModalTransition.h */, 207 | E0ACD9B4797F0ED5A149798D /* LGSemiModalTransition.m */, 208 | ); 209 | path = Classes; 210 | sourceTree = ""; 211 | }; 212 | 53F3778EBC983E48680AC969 /* Development Pods */ = { 213 | isa = PBXGroup; 214 | children = ( 215 | B571FD179CC1761F32B99ADA /* LGSemiModalNavController */, 216 | ); 217 | name = "Development Pods"; 218 | sourceTree = ""; 219 | }; 220 | 924D3996CB47AF422D4FB2DD /* Pod */ = { 221 | isa = PBXGroup; 222 | children = ( 223 | 47E4091C273BE7BDFE8D3A36 /* Classes */, 224 | ); 225 | path = Pod; 226 | sourceTree = ""; 227 | }; 228 | 95566701DEE699DA4CC45409 /* Targets Support Files */ = { 229 | isa = PBXGroup; 230 | children = ( 231 | A23F64AF41691113F00FFF80 /* Pods-LGSemiModalNavController_Example */, 232 | CF2C1A90DDC0C510CDCFA720 /* Pods-LGSemiModalNavController_Tests */, 233 | ); 234 | name = "Targets Support Files"; 235 | sourceTree = ""; 236 | }; 237 | 9DD8FD604CF3E659E47964E9 /* Products */ = { 238 | isa = PBXGroup; 239 | children = ( 240 | EF95F33F7FC829B21CCD786D /* LGSemiModalNavController.bundle */, 241 | E633F6AF1FC783F1BA5F149B /* LGSemiModalNavController.bundle */, 242 | 2C6F8CD49F418525DA1F885B /* LGSemiModalNavController.framework */, 243 | C009C05E7B1A831AED17E63A /* LGSemiModalNavController.framework */, 244 | A699BC76CC1F002BE29B4E34 /* Pods_LGSemiModalNavController_Example.framework */, 245 | 4CC6F182E1F863098602C527 /* Pods_LGSemiModalNavController_Tests.framework */, 246 | ); 247 | name = Products; 248 | sourceTree = ""; 249 | }; 250 | A23F64AF41691113F00FFF80 /* Pods-LGSemiModalNavController_Example */ = { 251 | isa = PBXGroup; 252 | children = ( 253 | 53E6AD52B87ED8B07FB03C30 /* Info.plist */, 254 | FF98B3BE9F02D880FC056900 /* Pods-LGSemiModalNavController_Example.modulemap */, 255 | 36833D11709A7D35E72F866B /* Pods-LGSemiModalNavController_Example-acknowledgements.markdown */, 256 | 7B6BF84A4936B20FCBB52BFE /* Pods-LGSemiModalNavController_Example-acknowledgements.plist */, 257 | 33B3E50BFA1B41707399CE5F /* Pods-LGSemiModalNavController_Example-dummy.m */, 258 | 2B3496AEC9092E07678DD69D /* Pods-LGSemiModalNavController_Example-environment.h */, 259 | 5153AC19A1B287C66D167DC5 /* Pods-LGSemiModalNavController_Example-frameworks.sh */, 260 | FDA00443DAA8E61C621D405D /* Pods-LGSemiModalNavController_Example-resources.sh */, 261 | DE7A050DB4A9677B809357AB /* Pods-LGSemiModalNavController_Example-umbrella.h */, 262 | 99C7DC85D15462C90790EEA5 /* Pods-LGSemiModalNavController_Example.debug.xcconfig */, 263 | 13E7AF3381ACD166507681F2 /* Pods-LGSemiModalNavController_Example.release.xcconfig */, 264 | ); 265 | name = "Pods-LGSemiModalNavController_Example"; 266 | path = "Target Support Files/Pods-LGSemiModalNavController_Example"; 267 | sourceTree = ""; 268 | }; 269 | A55DEC94943D298DB6B33678 = { 270 | isa = PBXGroup; 271 | children = ( 272 | 9E056E29910F0EF4E101FCA0 /* Podfile */, 273 | 53F3778EBC983E48680AC969 /* Development Pods */, 274 | 324E1E7722BAD47AFAB7E246 /* Frameworks */, 275 | 9DD8FD604CF3E659E47964E9 /* Products */, 276 | 95566701DEE699DA4CC45409 /* Targets Support Files */, 277 | ); 278 | sourceTree = ""; 279 | }; 280 | B571FD179CC1761F32B99ADA /* LGSemiModalNavController */ = { 281 | isa = PBXGroup; 282 | children = ( 283 | 924D3996CB47AF422D4FB2DD /* Pod */, 284 | 259B4FAE4C2DD2920C29A7E4 /* Support Files */, 285 | ); 286 | name = LGSemiModalNavController; 287 | path = ../..; 288 | sourceTree = ""; 289 | }; 290 | C84A9FF7A25BA642E7DABCDE /* iOS */ = { 291 | isa = PBXGroup; 292 | children = ( 293 | 2CE4D5D305B4A59B42D7DBA2 /* Foundation.framework */, 294 | 2986F62EBFF193ED622ABE91 /* UIKit.framework */, 295 | ); 296 | name = iOS; 297 | sourceTree = ""; 298 | }; 299 | CF2C1A90DDC0C510CDCFA720 /* Pods-LGSemiModalNavController_Tests */ = { 300 | isa = PBXGroup; 301 | children = ( 302 | EE34948EFED30328D1AA2603 /* Info.plist */, 303 | 6CD133B95DB8DB56B7C84560 /* Pods-LGSemiModalNavController_Tests.modulemap */, 304 | 28CF6ABCA98593F0D8098864 /* Pods-LGSemiModalNavController_Tests-acknowledgements.markdown */, 305 | D501B9FA115CC92173BF065A /* Pods-LGSemiModalNavController_Tests-acknowledgements.plist */, 306 | 40E52A0A49059D595FF9DE57 /* Pods-LGSemiModalNavController_Tests-dummy.m */, 307 | BC1ADFD5D536560972DB835C /* Pods-LGSemiModalNavController_Tests-environment.h */, 308 | 0FFA41021CE18C69AD1A89DE /* Pods-LGSemiModalNavController_Tests-frameworks.sh */, 309 | B2E7E007E8D53F8F4C6DD46A /* Pods-LGSemiModalNavController_Tests-resources.sh */, 310 | DD92EEE07511E6EA4B91E62E /* Pods-LGSemiModalNavController_Tests-umbrella.h */, 311 | 17973DC66DF1D011D44C9897 /* Pods-LGSemiModalNavController_Tests.debug.xcconfig */, 312 | 2C1D57CF92772D82C95CB205 /* Pods-LGSemiModalNavController_Tests.release.xcconfig */, 313 | ); 314 | name = "Pods-LGSemiModalNavController_Tests"; 315 | path = "Target Support Files/Pods-LGSemiModalNavController_Tests"; 316 | sourceTree = ""; 317 | }; 318 | /* End PBXGroup section */ 319 | 320 | /* Begin PBXHeadersBuildPhase section */ 321 | 0F7C78C789195B693748A1AC /* Headers */ = { 322 | isa = PBXHeadersBuildPhase; 323 | buildActionMask = 2147483647; 324 | files = ( 325 | 7173893779DCD5DBF722CB65 /* Pods-LGSemiModalNavController_Tests-umbrella.h in Headers */, 326 | ); 327 | runOnlyForDeploymentPostprocessing = 0; 328 | }; 329 | 2116EB392FC2B574D8612467 /* Headers */ = { 330 | isa = PBXHeadersBuildPhase; 331 | buildActionMask = 2147483647; 332 | files = ( 333 | 49D346AF396C16AC00734276 /* LGSemiModalNavViewController.h in Headers */, 334 | F5AB35C6C0018A70A61B7864 /* LGSemiModalTransition.h in Headers */, 335 | 2356E75A2F13899B39CB108A /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-umbrella.h in Headers */, 336 | ); 337 | runOnlyForDeploymentPostprocessing = 0; 338 | }; 339 | 93D7F06E1250733C263C610B /* Headers */ = { 340 | isa = PBXHeadersBuildPhase; 341 | buildActionMask = 2147483647; 342 | files = ( 343 | 53F7967DD21DAD1F686878D7 /* LGSemiModalNavViewController.h in Headers */, 344 | 06C3BBBE6027933E3AF9BE51 /* LGSemiModalTransition.h in Headers */, 345 | 2E02E54C36A4125E42B9E551 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-umbrella.h in Headers */, 346 | ); 347 | runOnlyForDeploymentPostprocessing = 0; 348 | }; 349 | AF08AFD1F72A550B343EC973 /* Headers */ = { 350 | isa = PBXHeadersBuildPhase; 351 | buildActionMask = 2147483647; 352 | files = ( 353 | E9F34AB1E98E89457EAD7C2F /* Pods-LGSemiModalNavController_Example-umbrella.h in Headers */, 354 | ); 355 | runOnlyForDeploymentPostprocessing = 0; 356 | }; 357 | /* End PBXHeadersBuildPhase section */ 358 | 359 | /* Begin PBXNativeTarget section */ 360 | 1C82EE6C1919724D5358D190 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-LGSemiModalNavController */ = { 361 | isa = PBXNativeTarget; 362 | buildConfigurationList = A410D9FD770DCCBBE4C687ED /* Build configuration list for PBXNativeTarget "Pods-LGSemiModalNavController_Example-LGSemiModalNavController-LGSemiModalNavController" */; 363 | buildPhases = ( 364 | 5B2D0BBD633C311EB6334CBD /* Sources */, 365 | B280A059870F067AB5E6E197 /* Frameworks */, 366 | 75BCB479D8409E09CB8FE1E6 /* Resources */, 367 | ); 368 | buildRules = ( 369 | ); 370 | dependencies = ( 371 | ); 372 | name = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController-LGSemiModalNavController"; 373 | productName = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController-LGSemiModalNavController"; 374 | productReference = E633F6AF1FC783F1BA5F149B /* LGSemiModalNavController.bundle */; 375 | productType = "com.apple.product-type.bundle"; 376 | }; 377 | 25705D7778791F63B3A98B02 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController */ = { 378 | isa = PBXNativeTarget; 379 | buildConfigurationList = DCDD9FA98A58AC3846F62F38 /* Build configuration list for PBXNativeTarget "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController" */; 380 | buildPhases = ( 381 | 197D26D2A9E3E0E8A5AAD0F8 /* Sources */, 382 | CE34B847A209488311A04A03 /* Frameworks */, 383 | 295C709DD92C1A3EFB48910A /* Resources */, 384 | 93D7F06E1250733C263C610B /* Headers */, 385 | ); 386 | buildRules = ( 387 | ); 388 | dependencies = ( 389 | 82A18E3C9DB0A6D142412BFA /* PBXTargetDependency */, 390 | ); 391 | name = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController"; 392 | productName = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController"; 393 | productReference = C009C05E7B1A831AED17E63A /* LGSemiModalNavController.framework */; 394 | productType = "com.apple.product-type.framework"; 395 | }; 396 | 5F8471CFBED226BABB6F142B /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-LGSemiModalNavController */ = { 397 | isa = PBXNativeTarget; 398 | buildConfigurationList = FBB9FC26A66B13BEE1A551FB /* Build configuration list for PBXNativeTarget "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-LGSemiModalNavController" */; 399 | buildPhases = ( 400 | 1D45F6C09380D989442A9DF5 /* Sources */, 401 | 591368E70C26E3F5D91F7262 /* Frameworks */, 402 | 39EFFCAA0537AFA50ABBFE05 /* Resources */, 403 | ); 404 | buildRules = ( 405 | ); 406 | dependencies = ( 407 | ); 408 | name = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-LGSemiModalNavController"; 409 | productName = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-LGSemiModalNavController"; 410 | productReference = EF95F33F7FC829B21CCD786D /* LGSemiModalNavController.bundle */; 411 | productType = "com.apple.product-type.bundle"; 412 | }; 413 | 6B26E77120D4D4FCDD8E5087 /* Pods-LGSemiModalNavController_Example */ = { 414 | isa = PBXNativeTarget; 415 | buildConfigurationList = FE35DBEE29636EA145DFFCCA /* Build configuration list for PBXNativeTarget "Pods-LGSemiModalNavController_Example" */; 416 | buildPhases = ( 417 | 535AE53B880F820626D7CED4 /* Sources */, 418 | 9A6932B90C1989262B3904D4 /* Frameworks */, 419 | AF08AFD1F72A550B343EC973 /* Headers */, 420 | ); 421 | buildRules = ( 422 | ); 423 | dependencies = ( 424 | FEA0C690387FDEB0BFF87082 /* PBXTargetDependency */, 425 | ); 426 | name = "Pods-LGSemiModalNavController_Example"; 427 | productName = "Pods-LGSemiModalNavController_Example"; 428 | productReference = A699BC76CC1F002BE29B4E34 /* Pods_LGSemiModalNavController_Example.framework */; 429 | productType = "com.apple.product-type.framework"; 430 | }; 431 | 9CA4DA8C1936165805EE3FF0 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController */ = { 432 | isa = PBXNativeTarget; 433 | buildConfigurationList = 43AC5A8ED5C1B985FB54CBFE /* Build configuration list for PBXNativeTarget "Pods-LGSemiModalNavController_Example-LGSemiModalNavController" */; 434 | buildPhases = ( 435 | 9338BC0CD246AFD740064894 /* Sources */, 436 | E5E59B8CC407A8FCD295B51C /* Frameworks */, 437 | C38BB0870D758D2CDA9F675A /* Resources */, 438 | 2116EB392FC2B574D8612467 /* Headers */, 439 | ); 440 | buildRules = ( 441 | ); 442 | dependencies = ( 443 | AE7A2694D0C7374B550EB1D7 /* PBXTargetDependency */, 444 | ); 445 | name = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController"; 446 | productName = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController"; 447 | productReference = 2C6F8CD49F418525DA1F885B /* LGSemiModalNavController.framework */; 448 | productType = "com.apple.product-type.framework"; 449 | }; 450 | BF92F3F831E368BE75FD6F1A /* Pods-LGSemiModalNavController_Tests */ = { 451 | isa = PBXNativeTarget; 452 | buildConfigurationList = 3FC000020983F2BF8508FFD7 /* Build configuration list for PBXNativeTarget "Pods-LGSemiModalNavController_Tests" */; 453 | buildPhases = ( 454 | 6BE634340198FEA5FF63E002 /* Sources */, 455 | 4094B9D5A8172B1F424C48AD /* Frameworks */, 456 | 0F7C78C789195B693748A1AC /* Headers */, 457 | ); 458 | buildRules = ( 459 | ); 460 | dependencies = ( 461 | DEDD8366B6513FD5DB28445A /* PBXTargetDependency */, 462 | ); 463 | name = "Pods-LGSemiModalNavController_Tests"; 464 | productName = "Pods-LGSemiModalNavController_Tests"; 465 | productReference = 4CC6F182E1F863098602C527 /* Pods_LGSemiModalNavController_Tests.framework */; 466 | productType = "com.apple.product-type.framework"; 467 | }; 468 | /* End PBXNativeTarget section */ 469 | 470 | /* Begin PBXProject section */ 471 | F1A4DD188608200FE06A7CA0 /* Project object */ = { 472 | isa = PBXProject; 473 | attributes = { 474 | LastUpgradeCheck = 0640; 475 | }; 476 | buildConfigurationList = 1E59B92D760B378307DE41F0 /* Build configuration list for PBXProject "Pods" */; 477 | compatibilityVersion = "Xcode 3.2"; 478 | developmentRegion = English; 479 | hasScannedForEncodings = 0; 480 | knownRegions = ( 481 | en, 482 | ); 483 | mainGroup = A55DEC94943D298DB6B33678; 484 | productRefGroup = 9DD8FD604CF3E659E47964E9 /* Products */; 485 | projectDirPath = ""; 486 | projectRoot = ""; 487 | targets = ( 488 | 6B26E77120D4D4FCDD8E5087 /* Pods-LGSemiModalNavController_Example */, 489 | 9CA4DA8C1936165805EE3FF0 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController */, 490 | 1C82EE6C1919724D5358D190 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-LGSemiModalNavController */, 491 | BF92F3F831E368BE75FD6F1A /* Pods-LGSemiModalNavController_Tests */, 492 | 25705D7778791F63B3A98B02 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController */, 493 | 5F8471CFBED226BABB6F142B /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-LGSemiModalNavController */, 494 | ); 495 | }; 496 | /* End PBXProject section */ 497 | 498 | /* Begin PBXResourcesBuildPhase section */ 499 | 295C709DD92C1A3EFB48910A /* Resources */ = { 500 | isa = PBXResourcesBuildPhase; 501 | buildActionMask = 2147483647; 502 | files = ( 503 | 0ED535D4FEA0CF42E8903D96 /* LGSemiModalNavController.bundle in Resources */, 504 | ); 505 | runOnlyForDeploymentPostprocessing = 0; 506 | }; 507 | 39EFFCAA0537AFA50ABBFE05 /* Resources */ = { 508 | isa = PBXResourcesBuildPhase; 509 | buildActionMask = 2147483647; 510 | files = ( 511 | ); 512 | runOnlyForDeploymentPostprocessing = 0; 513 | }; 514 | 75BCB479D8409E09CB8FE1E6 /* Resources */ = { 515 | isa = PBXResourcesBuildPhase; 516 | buildActionMask = 2147483647; 517 | files = ( 518 | ); 519 | runOnlyForDeploymentPostprocessing = 0; 520 | }; 521 | C38BB0870D758D2CDA9F675A /* Resources */ = { 522 | isa = PBXResourcesBuildPhase; 523 | buildActionMask = 2147483647; 524 | files = ( 525 | F831E0961780F293CA533B74 /* LGSemiModalNavController.bundle in Resources */, 526 | ); 527 | runOnlyForDeploymentPostprocessing = 0; 528 | }; 529 | /* End PBXResourcesBuildPhase section */ 530 | 531 | /* Begin PBXSourcesBuildPhase section */ 532 | 197D26D2A9E3E0E8A5AAD0F8 /* Sources */ = { 533 | isa = PBXSourcesBuildPhase; 534 | buildActionMask = 2147483647; 535 | files = ( 536 | DE93F767D7DF494A310DEBD7 /* LGSemiModalNavViewController.m in Sources */, 537 | 6A76D220079D936BFA33A6CB /* LGSemiModalTransition.m in Sources */, 538 | 9DCCE8BF7250E88A1C8369A5 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-dummy.m in Sources */, 539 | ); 540 | runOnlyForDeploymentPostprocessing = 0; 541 | }; 542 | 1D45F6C09380D989442A9DF5 /* Sources */ = { 543 | isa = PBXSourcesBuildPhase; 544 | buildActionMask = 2147483647; 545 | files = ( 546 | ); 547 | runOnlyForDeploymentPostprocessing = 0; 548 | }; 549 | 535AE53B880F820626D7CED4 /* Sources */ = { 550 | isa = PBXSourcesBuildPhase; 551 | buildActionMask = 2147483647; 552 | files = ( 553 | 44FDFAD617DB6CDB13F4B0BE /* Pods-LGSemiModalNavController_Example-dummy.m in Sources */, 554 | ); 555 | runOnlyForDeploymentPostprocessing = 0; 556 | }; 557 | 5B2D0BBD633C311EB6334CBD /* Sources */ = { 558 | isa = PBXSourcesBuildPhase; 559 | buildActionMask = 2147483647; 560 | files = ( 561 | ); 562 | runOnlyForDeploymentPostprocessing = 0; 563 | }; 564 | 6BE634340198FEA5FF63E002 /* Sources */ = { 565 | isa = PBXSourcesBuildPhase; 566 | buildActionMask = 2147483647; 567 | files = ( 568 | B377FDAF92061F26AF5B00BD /* Pods-LGSemiModalNavController_Tests-dummy.m in Sources */, 569 | ); 570 | runOnlyForDeploymentPostprocessing = 0; 571 | }; 572 | 9338BC0CD246AFD740064894 /* Sources */ = { 573 | isa = PBXSourcesBuildPhase; 574 | buildActionMask = 2147483647; 575 | files = ( 576 | E422A2E7569CD249AA9B9373 /* LGSemiModalNavViewController.m in Sources */, 577 | BCDBBBF95CA956200B29F263 /* LGSemiModalTransition.m in Sources */, 578 | BA0DC3618B5623A9B80C668F /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-dummy.m in Sources */, 579 | ); 580 | runOnlyForDeploymentPostprocessing = 0; 581 | }; 582 | /* End PBXSourcesBuildPhase section */ 583 | 584 | /* Begin PBXTargetDependency section */ 585 | 82A18E3C9DB0A6D142412BFA /* PBXTargetDependency */ = { 586 | isa = PBXTargetDependency; 587 | name = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-LGSemiModalNavController"; 588 | target = 5F8471CFBED226BABB6F142B /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-LGSemiModalNavController */; 589 | targetProxy = 1BC01F73CE11CA46E061B953 /* PBXContainerItemProxy */; 590 | }; 591 | AE7A2694D0C7374B550EB1D7 /* PBXTargetDependency */ = { 592 | isa = PBXTargetDependency; 593 | name = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController-LGSemiModalNavController"; 594 | target = 1C82EE6C1919724D5358D190 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-LGSemiModalNavController */; 595 | targetProxy = F27A4755745B2C3796AFD8F9 /* PBXContainerItemProxy */; 596 | }; 597 | DEDD8366B6513FD5DB28445A /* PBXTargetDependency */ = { 598 | isa = PBXTargetDependency; 599 | name = "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController"; 600 | target = 25705D7778791F63B3A98B02 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController */; 601 | targetProxy = 0BAB1DB0CBD59949C79DA533 /* PBXContainerItemProxy */; 602 | }; 603 | FEA0C690387FDEB0BFF87082 /* PBXTargetDependency */ = { 604 | isa = PBXTargetDependency; 605 | name = "Pods-LGSemiModalNavController_Example-LGSemiModalNavController"; 606 | target = 9CA4DA8C1936165805EE3FF0 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController */; 607 | targetProxy = F233FA499D5BF46A020C6590 /* PBXContainerItemProxy */; 608 | }; 609 | /* End PBXTargetDependency section */ 610 | 611 | /* Begin XCBuildConfiguration section */ 612 | 07191239727090484FAC2830 /* Debug */ = { 613 | isa = XCBuildConfiguration; 614 | baseConfigurationReference = 99C7DC85D15462C90790EEA5 /* Pods-LGSemiModalNavController_Example.debug.xcconfig */; 615 | buildSettings = { 616 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 617 | CURRENT_PROJECT_VERSION = 1; 618 | DEFINES_MODULE = YES; 619 | DYLIB_COMPATIBILITY_VERSION = 1; 620 | DYLIB_CURRENT_VERSION = 1; 621 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 622 | ENABLE_STRICT_OBJC_MSGSEND = YES; 623 | INFOPLIST_FILE = "Target Support Files/Pods-LGSemiModalNavController_Example/Info.plist"; 624 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 625 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 626 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 627 | MODULEMAP_FILE = "Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example.modulemap"; 628 | MTL_ENABLE_DEBUG_INFO = YES; 629 | OTHER_LDFLAGS = ""; 630 | OTHER_LIBTOOLFLAGS = ""; 631 | PODS_ROOT = "$(SRCROOT)"; 632 | PRODUCT_NAME = Pods_LGSemiModalNavController_Example; 633 | SDKROOT = iphoneos; 634 | SKIP_INSTALL = YES; 635 | TARGETED_DEVICE_FAMILY = "1,2"; 636 | VERSIONING_SYSTEM = "apple-generic"; 637 | VERSION_INFO_PREFIX = ""; 638 | }; 639 | name = Debug; 640 | }; 641 | 28A2D4448445175D18E4FADB /* Release */ = { 642 | isa = XCBuildConfiguration; 643 | baseConfigurationReference = C8511FC685C79B232DD3F414 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-Private.xcconfig */; 644 | buildSettings = { 645 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-LGSemiModalNavController_Tests"; 646 | ENABLE_STRICT_OBJC_MSGSEND = YES; 647 | PRODUCT_NAME = LGSemiModalNavController; 648 | SDKROOT = iphoneos; 649 | SKIP_INSTALL = YES; 650 | WRAPPER_EXTENSION = bundle; 651 | }; 652 | name = Release; 653 | }; 654 | 2AF39F7C64B3391B9C7326BE /* Debug */ = { 655 | isa = XCBuildConfiguration; 656 | baseConfigurationReference = C8511FC685C79B232DD3F414 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-Private.xcconfig */; 657 | buildSettings = { 658 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-LGSemiModalNavController_Tests"; 659 | ENABLE_STRICT_OBJC_MSGSEND = YES; 660 | PRODUCT_NAME = LGSemiModalNavController; 661 | SDKROOT = iphoneos; 662 | SKIP_INSTALL = YES; 663 | WRAPPER_EXTENSION = bundle; 664 | }; 665 | name = Debug; 666 | }; 667 | 4C6D1BF40BD91FE50E75D76D /* Release */ = { 668 | isa = XCBuildConfiguration; 669 | baseConfigurationReference = 258C08855365F63C70EC9AD4 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-Private.xcconfig */; 670 | buildSettings = { 671 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 672 | CURRENT_PROJECT_VERSION = 1; 673 | DEFINES_MODULE = YES; 674 | DYLIB_COMPATIBILITY_VERSION = 1; 675 | DYLIB_CURRENT_VERSION = 1; 676 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 677 | ENABLE_STRICT_OBJC_MSGSEND = YES; 678 | GCC_PREFIX_HEADER = "Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController/Pods-LGSemiModalNavController_Example-LGSemiModalNavController-prefix.pch"; 679 | INFOPLIST_FILE = "Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController/Info.plist"; 680 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 681 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 682 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 683 | MODULEMAP_FILE = "Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController/Pods-LGSemiModalNavController_Example-LGSemiModalNavController.modulemap"; 684 | MTL_ENABLE_DEBUG_INFO = NO; 685 | PRODUCT_NAME = LGSemiModalNavController; 686 | SDKROOT = iphoneos; 687 | SKIP_INSTALL = YES; 688 | TARGETED_DEVICE_FAMILY = "1,2"; 689 | VERSIONING_SYSTEM = "apple-generic"; 690 | VERSION_INFO_PREFIX = ""; 691 | }; 692 | name = Release; 693 | }; 694 | 6619B927791FA906483DD9C1 /* Release */ = { 695 | isa = XCBuildConfiguration; 696 | buildSettings = { 697 | ALWAYS_SEARCH_USER_PATHS = NO; 698 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 699 | CLANG_CXX_LIBRARY = "libc++"; 700 | CLANG_ENABLE_MODULES = YES; 701 | CLANG_ENABLE_OBJC_ARC = YES; 702 | CLANG_WARN_BOOL_CONVERSION = YES; 703 | CLANG_WARN_CONSTANT_CONVERSION = YES; 704 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 705 | CLANG_WARN_EMPTY_BODY = YES; 706 | CLANG_WARN_ENUM_CONVERSION = YES; 707 | CLANG_WARN_INT_CONVERSION = YES; 708 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 709 | CLANG_WARN_UNREACHABLE_CODE = YES; 710 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 711 | COPY_PHASE_STRIP = YES; 712 | ENABLE_NS_ASSERTIONS = NO; 713 | GCC_C_LANGUAGE_STANDARD = gnu99; 714 | GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1"; 715 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 716 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 717 | GCC_WARN_UNDECLARED_SELECTOR = YES; 718 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 719 | GCC_WARN_UNUSED_FUNCTION = YES; 720 | GCC_WARN_UNUSED_VARIABLE = YES; 721 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 722 | STRIP_INSTALLED_PRODUCT = NO; 723 | SYMROOT = "${SRCROOT}/../build"; 724 | VALIDATE_PRODUCT = YES; 725 | }; 726 | name = Release; 727 | }; 728 | 77206E4E0EF5E4F7E366292F /* Debug */ = { 729 | isa = XCBuildConfiguration; 730 | baseConfigurationReference = C8511FC685C79B232DD3F414 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-Private.xcconfig */; 731 | buildSettings = { 732 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 733 | CURRENT_PROJECT_VERSION = 1; 734 | DEFINES_MODULE = YES; 735 | DYLIB_COMPATIBILITY_VERSION = 1; 736 | DYLIB_CURRENT_VERSION = 1; 737 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 738 | ENABLE_STRICT_OBJC_MSGSEND = YES; 739 | GCC_PREFIX_HEADER = "Target Support Files/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-prefix.pch"; 740 | INFOPLIST_FILE = "Target Support Files/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Info.plist"; 741 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 742 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 743 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 744 | MODULEMAP_FILE = "Target Support Files/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.modulemap"; 745 | MTL_ENABLE_DEBUG_INFO = YES; 746 | PRODUCT_NAME = LGSemiModalNavController; 747 | SDKROOT = iphoneos; 748 | SKIP_INSTALL = YES; 749 | TARGETED_DEVICE_FAMILY = "1,2"; 750 | VERSIONING_SYSTEM = "apple-generic"; 751 | VERSION_INFO_PREFIX = ""; 752 | }; 753 | name = Debug; 754 | }; 755 | 93989FF95BEDB6CC00FBF72E /* Release */ = { 756 | isa = XCBuildConfiguration; 757 | baseConfigurationReference = 258C08855365F63C70EC9AD4 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-Private.xcconfig */; 758 | buildSettings = { 759 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-LGSemiModalNavController_Example"; 760 | ENABLE_STRICT_OBJC_MSGSEND = YES; 761 | PRODUCT_NAME = LGSemiModalNavController; 762 | SDKROOT = iphoneos; 763 | SKIP_INSTALL = YES; 764 | WRAPPER_EXTENSION = bundle; 765 | }; 766 | name = Release; 767 | }; 768 | 97EFBBF9492C5688704A5BEE /* Debug */ = { 769 | isa = XCBuildConfiguration; 770 | baseConfigurationReference = 258C08855365F63C70EC9AD4 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-Private.xcconfig */; 771 | buildSettings = { 772 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-LGSemiModalNavController_Example"; 773 | ENABLE_STRICT_OBJC_MSGSEND = YES; 774 | PRODUCT_NAME = LGSemiModalNavController; 775 | SDKROOT = iphoneos; 776 | SKIP_INSTALL = YES; 777 | WRAPPER_EXTENSION = bundle; 778 | }; 779 | name = Debug; 780 | }; 781 | A70DADF23CAEA0C39E6E12C7 /* Debug */ = { 782 | isa = XCBuildConfiguration; 783 | baseConfigurationReference = 258C08855365F63C70EC9AD4 /* Pods-LGSemiModalNavController_Example-LGSemiModalNavController-Private.xcconfig */; 784 | buildSettings = { 785 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 786 | CURRENT_PROJECT_VERSION = 1; 787 | DEFINES_MODULE = YES; 788 | DYLIB_COMPATIBILITY_VERSION = 1; 789 | DYLIB_CURRENT_VERSION = 1; 790 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 791 | ENABLE_STRICT_OBJC_MSGSEND = YES; 792 | GCC_PREFIX_HEADER = "Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController/Pods-LGSemiModalNavController_Example-LGSemiModalNavController-prefix.pch"; 793 | INFOPLIST_FILE = "Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController/Info.plist"; 794 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 795 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 796 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 797 | MODULEMAP_FILE = "Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController/Pods-LGSemiModalNavController_Example-LGSemiModalNavController.modulemap"; 798 | MTL_ENABLE_DEBUG_INFO = YES; 799 | PRODUCT_NAME = LGSemiModalNavController; 800 | SDKROOT = iphoneos; 801 | SKIP_INSTALL = YES; 802 | TARGETED_DEVICE_FAMILY = "1,2"; 803 | VERSIONING_SYSTEM = "apple-generic"; 804 | VERSION_INFO_PREFIX = ""; 805 | }; 806 | name = Debug; 807 | }; 808 | BA4F02C0A3931CF97CFF6CDD /* Release */ = { 809 | isa = XCBuildConfiguration; 810 | baseConfigurationReference = C8511FC685C79B232DD3F414 /* Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-Private.xcconfig */; 811 | buildSettings = { 812 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 813 | CURRENT_PROJECT_VERSION = 1; 814 | DEFINES_MODULE = YES; 815 | DYLIB_COMPATIBILITY_VERSION = 1; 816 | DYLIB_CURRENT_VERSION = 1; 817 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 818 | ENABLE_STRICT_OBJC_MSGSEND = YES; 819 | GCC_PREFIX_HEADER = "Target Support Files/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-prefix.pch"; 820 | INFOPLIST_FILE = "Target Support Files/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Info.plist"; 821 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 822 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 823 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 824 | MODULEMAP_FILE = "Target Support Files/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.modulemap"; 825 | MTL_ENABLE_DEBUG_INFO = NO; 826 | PRODUCT_NAME = LGSemiModalNavController; 827 | SDKROOT = iphoneos; 828 | SKIP_INSTALL = YES; 829 | TARGETED_DEVICE_FAMILY = "1,2"; 830 | VERSIONING_SYSTEM = "apple-generic"; 831 | VERSION_INFO_PREFIX = ""; 832 | }; 833 | name = Release; 834 | }; 835 | CA5BE2F8C4C80253D19A238F /* Release */ = { 836 | isa = XCBuildConfiguration; 837 | baseConfigurationReference = 13E7AF3381ACD166507681F2 /* Pods-LGSemiModalNavController_Example.release.xcconfig */; 838 | buildSettings = { 839 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 840 | CURRENT_PROJECT_VERSION = 1; 841 | DEFINES_MODULE = YES; 842 | DYLIB_COMPATIBILITY_VERSION = 1; 843 | DYLIB_CURRENT_VERSION = 1; 844 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 845 | ENABLE_STRICT_OBJC_MSGSEND = YES; 846 | INFOPLIST_FILE = "Target Support Files/Pods-LGSemiModalNavController_Example/Info.plist"; 847 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 848 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 849 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 850 | MODULEMAP_FILE = "Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example.modulemap"; 851 | MTL_ENABLE_DEBUG_INFO = NO; 852 | OTHER_LDFLAGS = ""; 853 | OTHER_LIBTOOLFLAGS = ""; 854 | PODS_ROOT = "$(SRCROOT)"; 855 | PRODUCT_NAME = Pods_LGSemiModalNavController_Example; 856 | SDKROOT = iphoneos; 857 | SKIP_INSTALL = YES; 858 | TARGETED_DEVICE_FAMILY = "1,2"; 859 | VERSIONING_SYSTEM = "apple-generic"; 860 | VERSION_INFO_PREFIX = ""; 861 | }; 862 | name = Release; 863 | }; 864 | DD4D41CFD1FF800B9CA57C8F /* Release */ = { 865 | isa = XCBuildConfiguration; 866 | baseConfigurationReference = 2C1D57CF92772D82C95CB205 /* Pods-LGSemiModalNavController_Tests.release.xcconfig */; 867 | buildSettings = { 868 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 869 | CURRENT_PROJECT_VERSION = 1; 870 | DEFINES_MODULE = YES; 871 | DYLIB_COMPATIBILITY_VERSION = 1; 872 | DYLIB_CURRENT_VERSION = 1; 873 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 874 | ENABLE_STRICT_OBJC_MSGSEND = YES; 875 | INFOPLIST_FILE = "Target Support Files/Pods-LGSemiModalNavController_Tests/Info.plist"; 876 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 877 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 878 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 879 | MODULEMAP_FILE = "Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests.modulemap"; 880 | MTL_ENABLE_DEBUG_INFO = NO; 881 | OTHER_LDFLAGS = ""; 882 | OTHER_LIBTOOLFLAGS = ""; 883 | PODS_ROOT = "$(SRCROOT)"; 884 | PRODUCT_NAME = Pods_LGSemiModalNavController_Tests; 885 | SDKROOT = iphoneos; 886 | SKIP_INSTALL = YES; 887 | TARGETED_DEVICE_FAMILY = "1,2"; 888 | VERSIONING_SYSTEM = "apple-generic"; 889 | VERSION_INFO_PREFIX = ""; 890 | }; 891 | name = Release; 892 | }; 893 | E08BAA712149A334935D9498 /* Debug */ = { 894 | isa = XCBuildConfiguration; 895 | baseConfigurationReference = 17973DC66DF1D011D44C9897 /* Pods-LGSemiModalNavController_Tests.debug.xcconfig */; 896 | buildSettings = { 897 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 898 | CURRENT_PROJECT_VERSION = 1; 899 | DEFINES_MODULE = YES; 900 | DYLIB_COMPATIBILITY_VERSION = 1; 901 | DYLIB_CURRENT_VERSION = 1; 902 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 903 | ENABLE_STRICT_OBJC_MSGSEND = YES; 904 | INFOPLIST_FILE = "Target Support Files/Pods-LGSemiModalNavController_Tests/Info.plist"; 905 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 906 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 907 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 908 | MODULEMAP_FILE = "Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests.modulemap"; 909 | MTL_ENABLE_DEBUG_INFO = YES; 910 | OTHER_LDFLAGS = ""; 911 | OTHER_LIBTOOLFLAGS = ""; 912 | PODS_ROOT = "$(SRCROOT)"; 913 | PRODUCT_NAME = Pods_LGSemiModalNavController_Tests; 914 | SDKROOT = iphoneos; 915 | SKIP_INSTALL = YES; 916 | TARGETED_DEVICE_FAMILY = "1,2"; 917 | VERSIONING_SYSTEM = "apple-generic"; 918 | VERSION_INFO_PREFIX = ""; 919 | }; 920 | name = Debug; 921 | }; 922 | FB37ED83E0C02004D9CEA209 /* Debug */ = { 923 | isa = XCBuildConfiguration; 924 | buildSettings = { 925 | ALWAYS_SEARCH_USER_PATHS = NO; 926 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 927 | CLANG_CXX_LIBRARY = "libc++"; 928 | CLANG_ENABLE_MODULES = YES; 929 | CLANG_ENABLE_OBJC_ARC = YES; 930 | CLANG_WARN_BOOL_CONVERSION = YES; 931 | CLANG_WARN_CONSTANT_CONVERSION = YES; 932 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 933 | CLANG_WARN_EMPTY_BODY = YES; 934 | CLANG_WARN_ENUM_CONVERSION = YES; 935 | CLANG_WARN_INT_CONVERSION = YES; 936 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 937 | CLANG_WARN_UNREACHABLE_CODE = YES; 938 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 939 | COPY_PHASE_STRIP = NO; 940 | GCC_C_LANGUAGE_STANDARD = gnu99; 941 | GCC_DYNAMIC_NO_PIC = NO; 942 | GCC_OPTIMIZATION_LEVEL = 0; 943 | GCC_PREPROCESSOR_DEFINITIONS = ( 944 | "DEBUG=1", 945 | "$(inherited)", 946 | ); 947 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 948 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 949 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 950 | GCC_WARN_UNDECLARED_SELECTOR = YES; 951 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 952 | GCC_WARN_UNUSED_FUNCTION = YES; 953 | GCC_WARN_UNUSED_VARIABLE = YES; 954 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 955 | ONLY_ACTIVE_ARCH = YES; 956 | STRIP_INSTALLED_PRODUCT = NO; 957 | SYMROOT = "${SRCROOT}/../build"; 958 | }; 959 | name = Debug; 960 | }; 961 | /* End XCBuildConfiguration section */ 962 | 963 | /* Begin XCConfigurationList section */ 964 | 1E59B92D760B378307DE41F0 /* Build configuration list for PBXProject "Pods" */ = { 965 | isa = XCConfigurationList; 966 | buildConfigurations = ( 967 | FB37ED83E0C02004D9CEA209 /* Debug */, 968 | 6619B927791FA906483DD9C1 /* Release */, 969 | ); 970 | defaultConfigurationIsVisible = 0; 971 | defaultConfigurationName = Release; 972 | }; 973 | 3FC000020983F2BF8508FFD7 /* Build configuration list for PBXNativeTarget "Pods-LGSemiModalNavController_Tests" */ = { 974 | isa = XCConfigurationList; 975 | buildConfigurations = ( 976 | E08BAA712149A334935D9498 /* Debug */, 977 | DD4D41CFD1FF800B9CA57C8F /* Release */, 978 | ); 979 | defaultConfigurationIsVisible = 0; 980 | defaultConfigurationName = Release; 981 | }; 982 | 43AC5A8ED5C1B985FB54CBFE /* Build configuration list for PBXNativeTarget "Pods-LGSemiModalNavController_Example-LGSemiModalNavController" */ = { 983 | isa = XCConfigurationList; 984 | buildConfigurations = ( 985 | A70DADF23CAEA0C39E6E12C7 /* Debug */, 986 | 4C6D1BF40BD91FE50E75D76D /* Release */, 987 | ); 988 | defaultConfigurationIsVisible = 0; 989 | defaultConfigurationName = Release; 990 | }; 991 | A410D9FD770DCCBBE4C687ED /* Build configuration list for PBXNativeTarget "Pods-LGSemiModalNavController_Example-LGSemiModalNavController-LGSemiModalNavController" */ = { 992 | isa = XCConfigurationList; 993 | buildConfigurations = ( 994 | 97EFBBF9492C5688704A5BEE /* Debug */, 995 | 93989FF95BEDB6CC00FBF72E /* Release */, 996 | ); 997 | defaultConfigurationIsVisible = 0; 998 | defaultConfigurationName = Release; 999 | }; 1000 | DCDD9FA98A58AC3846F62F38 /* Build configuration list for PBXNativeTarget "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController" */ = { 1001 | isa = XCConfigurationList; 1002 | buildConfigurations = ( 1003 | 77206E4E0EF5E4F7E366292F /* Debug */, 1004 | BA4F02C0A3931CF97CFF6CDD /* Release */, 1005 | ); 1006 | defaultConfigurationIsVisible = 0; 1007 | defaultConfigurationName = Release; 1008 | }; 1009 | FBB9FC26A66B13BEE1A551FB /* Build configuration list for PBXNativeTarget "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-LGSemiModalNavController" */ = { 1010 | isa = XCConfigurationList; 1011 | buildConfigurations = ( 1012 | 2AF39F7C64B3391B9C7326BE /* Debug */, 1013 | 28A2D4448445175D18E4FADB /* Release */, 1014 | ); 1015 | defaultConfigurationIsVisible = 0; 1016 | defaultConfigurationName = Release; 1017 | }; 1018 | FE35DBEE29636EA145DFFCCA /* Build configuration list for PBXNativeTarget "Pods-LGSemiModalNavController_Example" */ = { 1019 | isa = XCConfigurationList; 1020 | buildConfigurations = ( 1021 | 07191239727090484FAC2830 /* Debug */, 1022 | CA5BE2F8C4C80253D19A238F /* Release */, 1023 | ); 1024 | defaultConfigurationIsVisible = 0; 1025 | defaultConfigurationName = Release; 1026 | }; 1027 | /* End XCConfigurationList section */ 1028 | }; 1029 | rootObject = F1A4DD188608200FE06A7CA0 /* Project object */; 1030 | } 1031 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-LGSemiModalNavController_Example-LGSemiModalNavController-LGSemiModalNavController.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 42 | 43 | 44 | 45 | 51 | 52 | 54 | 55 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-LGSemiModalNavController_Example-LGSemiModalNavController.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 42 | 43 | 44 | 45 | 51 | 52 | 54 | 55 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-LGSemiModalNavController.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 42 | 43 | 44 | 45 | 51 | 52 | 54 | 55 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 42 | 43 | 44 | 45 | 51 | 52 | 54 | 55 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/lukegeiger.xcuserdatad/xcschemes/Pods-LGSemiModalNavController_Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 42 | 43 | 44 | 45 | 51 | 52 | 54 | 55 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/lukegeiger.xcuserdatad/xcschemes/Pods-LGSemiModalNavController_Tests.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 42 | 43 | 44 | 45 | 51 | 52 | 54 | 55 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/lukegeiger.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Pods-LGSemiModalNavController_Example-LGSemiModalNavController-LGSemiModalNavController.xcscheme 8 | 9 | isShown 10 | 11 | 12 | Pods-LGSemiModalNavController_Example-LGSemiModalNavController.xcscheme 13 | 14 | isShown 15 | 16 | 17 | Pods-LGSemiModalNavController_Example.xcscheme 18 | 19 | isShown 20 | 21 | 22 | Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-LGSemiModalNavController.xcscheme 23 | 24 | isShown 25 | 26 | 27 | Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.xcscheme 28 | 29 | isShown 30 | 31 | 32 | Pods-LGSemiModalNavController_Tests.xcscheme 33 | 34 | isShown 35 | 36 | 37 | 38 | SuppressBuildableAutocreation 39 | 40 | 1C82EE6C1919724D5358D190 41 | 42 | primary 43 | 44 | 45 | 25705D7778791F63B3A98B02 46 | 47 | primary 48 | 49 | 50 | 5F8471CFBED226BABB6F142B 51 | 52 | primary 53 | 54 | 55 | 6B26E77120D4D4FCDD8E5087 56 | 57 | primary 58 | 59 | 60 | 9CA4DA8C1936165805EE3FF0 61 | 62 | primary 63 | 64 | 65 | BF92F3F831E368BE75FD6F1A 66 | 67 | primary 68 | 69 | 70 | 71 | 72 | 73 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.2.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController/Pods-LGSemiModalNavController_Example-LGSemiModalNavController-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-LGSemiModalNavController_Example-LGSemiModalNavController.xcconfig" 2 | CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH 3 | FRAMEWORK_SEARCH_PATHS = "$PODS_FRAMEWORK_BUILD_PATH" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/LGSemiModalNavController" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/LGSemiModalNavController" 6 | OTHER_LDFLAGS = ${PODS_LGSEMIMODALNAVCONTROLLER_EXAMPLE_LGSEMIMODALNAVCONTROLLER_OTHER_LDFLAGS} -ObjC 7 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-LGSemiModalNavController_Example 8 | PODS_ROOT = ${SRCROOT} 9 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController/Pods-LGSemiModalNavController_Example-LGSemiModalNavController-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_LGSemiModalNavController_Example_LGSemiModalNavController : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_LGSemiModalNavController_Example_LGSemiModalNavController 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController/Pods-LGSemiModalNavController_Example-LGSemiModalNavController-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-LGSemiModalNavController_Example-environment.h" 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController/Pods-LGSemiModalNavController_Example-LGSemiModalNavController-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "LGSemiModalNavViewController.h" 4 | #import "LGSemiModalTransition.h" 5 | 6 | FOUNDATION_EXPORT double LGSemiModalNavControllerVersionNumber; 7 | FOUNDATION_EXPORT const unsigned char LGSemiModalNavControllerVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController/Pods-LGSemiModalNavController_Example-LGSemiModalNavController.modulemap: -------------------------------------------------------------------------------- 1 | framework module LGSemiModalNavController { 2 | umbrella header "Pods-LGSemiModalNavController_Example-LGSemiModalNavController-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example-LGSemiModalNavController/Pods-LGSemiModalNavController_Example-LGSemiModalNavController.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_LGSEMIMODALNAVCONTROLLER_EXAMPLE_LGSEMIMODALNAVCONTROLLER_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## LGSemiModalNavController 5 | 6 | Copyright (c) 2015 Luke Geiger 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2015 Luke Geiger <lukejamesgeiger@gmail.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | LGSemiModalNavController 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_LGSemiModalNavController_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_LGSemiModalNavController_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example-environment.h: -------------------------------------------------------------------------------- 1 | 2 | // To check if a library is compiled with CocoaPods you 3 | // can use the `COCOAPODS` macro definition which is 4 | // defined in the xcconfigs so it is available in 5 | // headers also when they are imported in the client 6 | // project. 7 | 8 | 9 | // LGSemiModalNavController 10 | #define COCOAPODS_POD_AVAILABLE_LGSemiModalNavController 11 | #define COCOAPODS_VERSION_MAJOR_LGSemiModalNavController 0 12 | #define COCOAPODS_VERSION_MINOR_LGSemiModalNavController 2 13 | #define COCOAPODS_VERSION_PATCH_LGSemiModalNavController 0 14 | 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | local source="${BUILT_PRODUCTS_DIR}/Pods-LGSemiModalNavController_Example/$1" 12 | local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 13 | 14 | if [ -L "${source}" ]; then 15 | echo "Symlinked..." 16 | source=$(readlink "${source}") 17 | fi 18 | 19 | # use filter instead of exclude so missing patterns dont' throw errors 20 | echo "rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" --filter "- Modules/" ${source} ${destination}" 21 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" --filter "- Modules/" "${source}" "${destination}" 22 | # Resign the code if required by the build settings to avoid unstable apps 23 | if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then 24 | code_sign "${destination}/$1" 25 | fi 26 | 27 | # Embed linked Swift runtime libraries 28 | local basename 29 | basename=$(echo $1 | sed -E s/\\..+// && exit ${PIPESTATUS[0]}) 30 | local swift_runtime_libs 31 | 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]}) 32 | for lib in $swift_runtime_libs; do 33 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 34 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 35 | if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then 36 | code_sign "${destination}/${lib}" 37 | fi 38 | done 39 | } 40 | 41 | # Signs a framework with the provided identity 42 | code_sign() { 43 | # Use the current code_sign_identitiy 44 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 45 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1" 46 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" 47 | } 48 | 49 | 50 | if [[ "$CONFIGURATION" == "Debug" ]]; then 51 | install_framework 'LGSemiModalNavController.framework' 52 | fi 53 | if [[ "$CONFIGURATION" == "Release" ]]; then 54 | install_framework 'LGSemiModalNavController.framework' 55 | fi 56 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | realpath() { 12 | DIRECTORY=$(cd "${1%/*}" && pwd) 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | 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}" 22 | 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}" 23 | ;; 24 | *.xib) 25 | 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}" 26 | 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}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | 61 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 62 | if [[ "${ACTION}" == "install" ]]; then 63 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 64 | fi 65 | rm -f "$RESOURCES_TO_COPY" 66 | 67 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 68 | then 69 | case "${TARGETED_DEVICE_FAMILY}" in 70 | 1,2) 71 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 72 | ;; 73 | 1) 74 | TARGET_DEVICE_ARGS="--target-device iphone" 75 | ;; 76 | 2) 77 | TARGET_DEVICE_ARGS="--target-device ipad" 78 | ;; 79 | *) 80 | TARGET_DEVICE_ARGS="--target-device mac" 81 | ;; 82 | esac 83 | 84 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 85 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 86 | while read line; do 87 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 88 | XCASSET_FILES+=("$line") 89 | fi 90 | done <<<"$OTHER_XCASSETS" 91 | 92 | 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}" 93 | fi 94 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_LGSemiModalNavController_ExampleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_LGSemiModalNavController_ExampleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/LGSemiModalNavController.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "LGSemiModalNavController" 6 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 7 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-LGSemiModalNavController_Example 8 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_LGSemiModalNavController_Example { 2 | umbrella header "Pods-LGSemiModalNavController_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Example/Pods-LGSemiModalNavController_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/LGSemiModalNavController.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "LGSemiModalNavController" 6 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 7 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-LGSemiModalNavController_Example 8 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.2.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.xcconfig" 2 | CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH 3 | FRAMEWORK_SEARCH_PATHS = "$PODS_FRAMEWORK_BUILD_PATH" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/LGSemiModalNavController" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/LGSemiModalNavController" 6 | OTHER_LDFLAGS = ${PODS_LGSEMIMODALNAVCONTROLLER_TESTS_LGSEMIMODALNAVCONTROLLER_OTHER_LDFLAGS} -ObjC 7 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-LGSemiModalNavController_Tests 8 | PODS_ROOT = ${SRCROOT} 9 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_LGSemiModalNavController_Tests_LGSemiModalNavController : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_LGSemiModalNavController_Tests_LGSemiModalNavController 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-LGSemiModalNavController_Tests-environment.h" 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "LGSemiModalNavViewController.h" 4 | #import "LGSemiModalTransition.h" 5 | 6 | FOUNDATION_EXPORT double LGSemiModalNavControllerVersionNumber; 7 | FOUNDATION_EXPORT const unsigned char LGSemiModalNavControllerVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.modulemap: -------------------------------------------------------------------------------- 1 | framework module LGSemiModalNavController { 2 | umbrella header "Pods-LGSemiModalNavController_Tests-LGSemiModalNavController-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController/Pods-LGSemiModalNavController_Tests-LGSemiModalNavController.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_LGSEMIMODALNAVCONTROLLER_TESTS_LGSEMIMODALNAVCONTROLLER_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## LGSemiModalNavController 5 | 6 | Copyright (c) 2015 Luke Geiger 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2015 Luke Geiger <lukejamesgeiger@gmail.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | LGSemiModalNavController 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_LGSemiModalNavController_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_LGSemiModalNavController_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests-environment.h: -------------------------------------------------------------------------------- 1 | 2 | // To check if a library is compiled with CocoaPods you 3 | // can use the `COCOAPODS` macro definition which is 4 | // defined in the xcconfigs so it is available in 5 | // headers also when they are imported in the client 6 | // project. 7 | 8 | 9 | // LGSemiModalNavController 10 | #define COCOAPODS_POD_AVAILABLE_LGSemiModalNavController 11 | #define COCOAPODS_VERSION_MAJOR_LGSemiModalNavController 0 12 | #define COCOAPODS_VERSION_MINOR_LGSemiModalNavController 2 13 | #define COCOAPODS_VERSION_PATCH_LGSemiModalNavController 0 14 | 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | local source="${BUILT_PRODUCTS_DIR}/Pods-LGSemiModalNavController_Tests/$1" 12 | local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 13 | 14 | if [ -L "${source}" ]; then 15 | echo "Symlinked..." 16 | source=$(readlink "${source}") 17 | fi 18 | 19 | # use filter instead of exclude so missing patterns dont' throw errors 20 | echo "rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" --filter "- Modules/" ${source} ${destination}" 21 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" --filter "- Modules/" "${source}" "${destination}" 22 | # Resign the code if required by the build settings to avoid unstable apps 23 | if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then 24 | code_sign "${destination}/$1" 25 | fi 26 | 27 | # Embed linked Swift runtime libraries 28 | local basename 29 | basename=$(echo $1 | sed -E s/\\..+// && exit ${PIPESTATUS[0]}) 30 | local swift_runtime_libs 31 | 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]}) 32 | for lib in $swift_runtime_libs; do 33 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 34 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 35 | if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then 36 | code_sign "${destination}/${lib}" 37 | fi 38 | done 39 | } 40 | 41 | # Signs a framework with the provided identity 42 | code_sign() { 43 | # Use the current code_sign_identitiy 44 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 45 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1" 46 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" 47 | } 48 | 49 | 50 | if [[ "$CONFIGURATION" == "Debug" ]]; then 51 | install_framework 'LGSemiModalNavController.framework' 52 | fi 53 | if [[ "$CONFIGURATION" == "Release" ]]; then 54 | install_framework 'LGSemiModalNavController.framework' 55 | fi 56 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | realpath() { 12 | DIRECTORY=$(cd "${1%/*}" && pwd) 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | 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}" 22 | 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}" 23 | ;; 24 | *.xib) 25 | 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}" 26 | 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}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | 61 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 62 | if [[ "${ACTION}" == "install" ]]; then 63 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 64 | fi 65 | rm -f "$RESOURCES_TO_COPY" 66 | 67 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 68 | then 69 | case "${TARGETED_DEVICE_FAMILY}" in 70 | 1,2) 71 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 72 | ;; 73 | 1) 74 | TARGET_DEVICE_ARGS="--target-device iphone" 75 | ;; 76 | 2) 77 | TARGET_DEVICE_ARGS="--target-device ipad" 78 | ;; 79 | *) 80 | TARGET_DEVICE_ARGS="--target-device mac" 81 | ;; 82 | esac 83 | 84 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 85 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 86 | while read line; do 87 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 88 | XCASSET_FILES+=("$line") 89 | fi 90 | done <<<"$OTHER_XCASSETS" 91 | 92 | 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}" 93 | fi 94 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_LGSemiModalNavController_TestsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_LGSemiModalNavController_TestsVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/LGSemiModalNavController.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "LGSemiModalNavController" 6 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 7 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-LGSemiModalNavController_Tests 8 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_LGSemiModalNavController_Tests { 2 | umbrella header "Pods-LGSemiModalNavController_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LGSemiModalNavController_Tests/Pods-LGSemiModalNavController_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/LGSemiModalNavController.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "LGSemiModalNavController" 6 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 7 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-LGSemiModalNavController_Tests 8 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // The contents of this file are implicitly included at the beginning of every test case source file. 2 | 3 | #ifdef __OBJC__ 4 | 5 | 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // LGSemiModalNavControllerTests.m 3 | // LGSemiModalNavControllerTests 4 | // 5 | // Created by Luke Geiger on 06/13/2015. 6 | // Copyright (c) 2015 Luke Geiger. All rights reserved. 7 | // 8 | 9 | @import XCTest; 10 | 11 | @interface Tests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation Tests 16 | 17 | - (void)setUp 18 | { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown 24 | { 25 | // Put teardown code here. This method is called after the invocation of each test method in the class. 26 | [super tearDown]; 27 | } 28 | 29 | - (void)testExample 30 | { 31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); 32 | } 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LGSemiModalNavController.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint LGSemiModalNavController.podspec' to ensure this is a 3 | # valid spec and remove all comments before submitting the spec. 4 | # 5 | # Any lines starting with a # are optional, but encouraged 6 | # 7 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 8 | # 9 | 10 | Pod::Spec.new do |s| 11 | s.name = "LGSemiModalNavController" 12 | s.version = "0.2.0" 13 | s.summary = "A UINavigationController subclass that presents itself a dynamic amount" 14 | s.description = <<-DESC 15 | A UINavigationController subclass that presents itself a dynamic amount in a view controller using the UIViewControllerAnimatedTransitioning protocol. 16 | DESC 17 | s.homepage = "https://github.com/lukegeiger/LGSemiModalNavController" 18 | s.license = 'MIT' 19 | s.author = { "Luke Geiger" => "lukejamesgeiger@gmail.com" } 20 | s.source = { :git => "https://github.com/lukegeiger/LGSemiModalNavController.git", :tag => s.version.to_s } 21 | s.social_media_url = 'https://twitter.com/lukejgeiger' 22 | 23 | s.platform = :ios, '7.0' 24 | s.requires_arc = true 25 | 26 | s.source_files = 'Pod/Classes/**/*' 27 | s.resource_bundles = { 28 | 'LGSemiModalNavController' => ['Pod/Assets/*.png'] 29 | } 30 | 31 | # s.public_header_files = 'Pod/Classes/**/*.h' 32 | s.frameworks = 'UIKit' 33 | 34 | end 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 Luke Geiger 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Pod/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukegeiger/LGSemiModalNavController/83c63c97a8d15abe853eed33050cb5780817ceb8/Pod/.DS_Store -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukegeiger/LGSemiModalNavController/83c63c97a8d15abe853eed33050cb5780817ceb8/Pod/Assets/.gitkeep -------------------------------------------------------------------------------- /Pod/Classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukegeiger/LGSemiModalNavController/83c63c97a8d15abe853eed33050cb5780817ceb8/Pod/Classes/.DS_Store -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukegeiger/LGSemiModalNavController/83c63c97a8d15abe853eed33050cb5780817ceb8/Pod/Classes/.gitkeep -------------------------------------------------------------------------------- /Pod/Classes/LGSemiModalNavViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LGSemiModalNavViewController.h 3 | // 6th Man Apps LLC 4 | // 5 | // Created by Luke Geiger on 7/13/15. 6 | // Copyright (c) 2016 6th Man Apps LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "LGSemiModalTransition.h" 11 | 12 | @interface LGSemiModalNavViewController : UINavigationController 13 | 14 | /** 15 | Switch this to YES to enable tapping on the background to dismiss the semi modal. 16 | */ 17 | @property (nonatomic, assign, getter = isTapDismissEnabled) BOOL tapDismissEnabled; 18 | 19 | /** 20 | The speed at which the semi modal appears 21 | */ 22 | @property (nonatomic, assign) NSTimeInterval animationSpeed; 23 | 24 | /** 25 | The background shade color. 26 | */ 27 | @property (nonatomic, strong) UIColor *backgroundShadeColor; 28 | 29 | /** 30 | The transform that gets applied to the view controller underneath the semi modal 31 | */ 32 | @property (nonatomic, assign) CGAffineTransform scaleTransform; 33 | 34 | /** 35 | Spring damping for the semi modal transition 36 | */ 37 | @property (nonatomic, assign) CGFloat springDamping; 38 | 39 | /** 40 | Spring Velocity for the semi modal transition 41 | */ 42 | @property (nonatomic, assign) CGFloat springVelocity; 43 | 44 | /** 45 | The background shade alpha of the view underneath the semi modal 46 | */ 47 | @property (nonatomic, assign) CGFloat backgroundShadeAlpha; 48 | 49 | /** 50 | Dismisses the view controller 51 | */ 52 | - (void)dismissWasTapped; 53 | 54 | @end 55 | -------------------------------------------------------------------------------- /Pod/Classes/LGSemiModalNavViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // LGSemiModalNavViewController.h 3 | // 6th Man Apps LLC 4 | // 5 | // Created by Luke Geiger on 7/13/15. 6 | // Copyright (c) 2016 6th Man Apps LLC. All rights reserved. 7 | // 8 | 9 | #import "LGSemiModalNavViewController.h" 10 | 11 | @interface LGSemiModalNavViewController () 12 | 13 | @end 14 | 15 | @implementation LGSemiModalNavViewController 16 | 17 | #pragma mark - Life 18 | 19 | - (void)loadView{ 20 | [super loadView]; 21 | 22 | self.extendedLayoutIncludesOpaqueBars = NO; 23 | self.view.clipsToBounds = YES; 24 | self.transitioningDelegate = self; 25 | self.modalPresentationStyle = UIModalPresentationCustom; 26 | [self defaults]; 27 | } 28 | 29 | -(void)defaults{ 30 | _tapDismissEnabled = YES; 31 | _animationSpeed = 0.35f; 32 | _backgroundShadeColor = [UIColor blackColor]; 33 | _scaleTransform = CGAffineTransformMakeScale(.94, .94); 34 | _springDamping = 0.88; 35 | _springVelocity = 14; 36 | _backgroundShadeAlpha = 0.4; 37 | } 38 | 39 | #pragma mark - Actions 40 | 41 | - (void)dismissWasTapped{ 42 | [self dismissViewControllerAnimated:YES completion:nil]; 43 | } 44 | 45 | #pragma mark - UIViewControllerTransitioningDelegate Methods 46 | 47 | - (id)animationControllerForPresentedController:(UIViewController *)presented 48 | presentingController:(UIViewController *)presenting 49 | sourceController:(UIViewController *)source { 50 | return [self transitionPresenting:YES]; 51 | } 52 | 53 | - (id)animationControllerForDismissedController:(UIViewController *)dismissed { 54 | return [self transitionPresenting:NO]; 55 | } 56 | 57 | -(LGSemiModalTransition*)transitionPresenting:(BOOL)presenting{ 58 | LGSemiModalTransition *animator = [LGSemiModalTransition new]; 59 | animator.presenting = presenting; 60 | animator.tapDismissEnabled = _tapDismissEnabled; 61 | animator.animationSpeed = _animationSpeed; 62 | animator.backgroundShadeColor = _backgroundShadeColor; 63 | animator.scaleTransform = _scaleTransform; 64 | animator.springDamping = _springDamping; 65 | animator.springVelocity = _springVelocity; 66 | animator.backgroundShadeAlpha = _backgroundShadeAlpha; 67 | return animator; 68 | } 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /Pod/Classes/LGSemiModalTransition.h: -------------------------------------------------------------------------------- 1 | // 2 | // LGSemiModalTransition.h 3 | // 6th Man Apps LLC 4 | // 5 | // Created by Luke Geiger on 7/13/15. 6 | // Copyright (c) 2016 6th Man Apps LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LGSemiModalTransition : NSObject 12 | 13 | /** 14 | A switch to determine if the modal is a presenter or a dismisser 15 | */ 16 | @property (nonatomic, assign, getter = isPresenting) BOOL presenting; 17 | 18 | /** 19 | Switch this to YES to enable tapping on the background to dismiss the semi modal. 20 | */ 21 | @property (nonatomic, assign, getter = isTapDismissEnabled) BOOL tapDismissEnabled; 22 | 23 | /** 24 | The speed at which the semi modal appears 25 | */ 26 | @property (nonatomic, assign) NSTimeInterval animationSpeed; 27 | 28 | /** 29 | The background shade color. 30 | */ 31 | @property (nonatomic, strong) UIColor *backgroundShadeColor; 32 | 33 | /** 34 | The transform that gets applied to the view controller underneath the semi modal 35 | */ 36 | @property (nonatomic, assign) CGAffineTransform scaleTransform; 37 | 38 | /** 39 | Spring damping for the semi modal transition 40 | */ 41 | @property (nonatomic, assign) CGFloat springDamping; 42 | 43 | /** 44 | Spring Velocity for the semi modal transition 45 | */ 46 | @property (nonatomic, assign) CGFloat springVelocity; 47 | 48 | /** 49 | The background shade alpha of the view underneath the semi modal 50 | */ 51 | @property (nonatomic, assign) CGFloat backgroundShadeAlpha; 52 | 53 | @end 54 | -------------------------------------------------------------------------------- /Pod/Classes/LGSemiModalTransition.m: -------------------------------------------------------------------------------- 1 | // 2 | // LGSemiModalTransition.m 3 | // 6th Man Apps LLC 4 | // 5 | // Created by Luke Geiger on 7/13/15. 6 | // Copyright (c) 2016 6th Man Apps LLC. All rights reserved. 7 | // 8 | 9 | #import "LGSemiModalTransition.h" 10 | #import "LGSemiModalNavViewController.h" 11 | 12 | @interface LGSemiModalTransition () 13 | 14 | @end 15 | 16 | @implementation LGSemiModalTransition 17 | 18 | - (NSTimeInterval)transitionDuration:(id )transitionContext { 19 | return self.animationSpeed; 20 | } 21 | 22 | - (void)animateTransition:(id )transitionContext { 23 | 24 | UIViewController* fromViewController = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey]; 25 | UIViewController* toViewController = (UIViewController*)[transitionContext viewControllerForKey:UITransitionContextToViewControllerKey]; 26 | 27 | CGRect modalViewFinalFrame = CGRectMake(0, transitionContext.containerView.frame.size.height - toViewController.view.frame.size.height, toViewController.view.frame.size.width, toViewController.view.frame.size.height); 28 | CGRect modalViewInitialFrame = modalViewFinalFrame; 29 | modalViewInitialFrame.origin.y = transitionContext.containerView.frame.size.height; 30 | 31 | UIView* backgroundView = [[[[transitionContext containerView] subviews] filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"tag = 99"]] lastObject]; 32 | if(!backgroundView){ 33 | backgroundView = [[UIView alloc] initWithFrame:transitionContext.containerView.bounds]; 34 | backgroundView.alpha = 0; 35 | backgroundView.tag = 99; 36 | backgroundView.backgroundColor = _backgroundShadeColor; 37 | 38 | if (self.tapDismissEnabled) { 39 | UITapGestureRecognizer* tap = [[UITapGestureRecognizer alloc] initWithTarget:toViewController action:@selector(dismissWasTapped)]; 40 | [backgroundView addGestureRecognizer:tap]; 41 | backgroundView.userInteractionEnabled = YES; 42 | } 43 | } 44 | 45 | fromViewController.view.userInteractionEnabled = NO; 46 | toViewController.view.userInteractionEnabled = NO; 47 | 48 | if (self.presenting) { 49 | UIImage* image = [self viewAsImage:fromViewController.view]; 50 | [transitionContext.containerView insertSubview:[[UIImageView alloc] initWithImage:image] atIndex:0]; 51 | fromViewController.view.hidden = YES; 52 | 53 | [transitionContext.containerView insertSubview:backgroundView belowSubview:toViewController.view]; 54 | 55 | toViewController.view.frame = modalViewInitialFrame; 56 | [transitionContext.containerView addSubview:toViewController.view]; 57 | 58 | CGRect navBarFrame = ((LGSemiModalNavViewController*)toViewController).navigationBar.frame; 59 | ((LGSemiModalNavViewController*)toViewController).navigationBar.frame = CGRectMake(navBarFrame.origin.x, 0, navBarFrame.size.width, navBarFrame.size.height); 60 | 61 | [UIView animateWithDuration:[self transitionDuration:transitionContext] 62 | animations:^{ 63 | backgroundView.alpha = _backgroundShadeAlpha; 64 | [(UIView*)[transitionContext.containerView.subviews objectAtIndex:0] setTransform:_scaleTransform]; 65 | } 66 | completion:^(BOOL finished) { 67 | 68 | }]; 69 | 70 | [UIView animateWithDuration:[self transitionDuration:transitionContext] + .2 71 | delay:0 72 | usingSpringWithDamping:_springDamping 73 | initialSpringVelocity:_springVelocity 74 | options:UIViewAnimationOptionCurveEaseInOut 75 | animations:^{ 76 | toViewController.view.frame = modalViewFinalFrame; 77 | } 78 | completion:^(BOOL finished) { 79 | fromViewController.view.userInteractionEnabled = YES; 80 | toViewController.view.userInteractionEnabled = YES; 81 | [transitionContext completeTransition:YES]; 82 | }]; 83 | } 84 | else { 85 | [UIView animateWithDuration:[self transitionDuration:transitionContext] 86 | animations:^{ 87 | [(UIView*)[transitionContext.containerView.subviews objectAtIndex:0] setTransform:CGAffineTransformMakeScale(1, 1)]; 88 | fromViewController.view.frame = modalViewInitialFrame; 89 | backgroundView.alpha = 0; 90 | } 91 | completion:^(BOOL finished) { 92 | fromViewController.view.userInteractionEnabled = YES; 93 | toViewController.view.userInteractionEnabled = YES; 94 | toViewController.view.hidden = NO; 95 | [transitionContext completeTransition:YES]; 96 | }]; 97 | } 98 | } 99 | 100 | - (UIImage*)viewAsImage:(UIView*)view { 101 | UIImage *image = nil; 102 | UIGraphicsBeginImageContextWithOptions(view.bounds.size, NO, [UIScreen mainScreen].scale); 103 | [view.layer renderInContext:UIGraphicsGetCurrentContext()]; 104 | image = UIGraphicsGetImageFromCurrentImageContext(); 105 | UIGraphicsEndImageContext(); 106 | return image; 107 | } 108 | 109 | @end 110 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LGSemiModalNavController 2 | 3 | 4 | [![Version](https://img.shields.io/cocoapods/v/LGSemiModalNavController.svg?style=flat)](http://cocoapods.org/pods/LGSemiModalNavController) 5 | [![License](https://img.shields.io/cocoapods/l/LGSemiModalNavController.svg?style=flat)](http://cocoapods.org/pods/LGSemiModalNavController) 6 | [![Platform](https://img.shields.io/cocoapods/p/LGSemiModalNavController.svg?style=flat)](http://cocoapods.org/pods/LGSemiModalNavController) 7 | 8 |

9 | 10 |

11 | 12 | 13 | ## WARNING 14 | This repository is no longer maintained. 15 | 16 | ## Purpose & Description 17 | 18 | The purpose of the LGSemiModalNavController is to allow you to show a view controller a dynamically set height over another view controller. 19 | 20 | The effect this custom transition gives off is that a view partially springs up from the bottom of the screen and into place. The view that gets sprung over, gets scaled down by a customizable amount. 21 | 22 | ## Under The Hood 23 | There are two classes that play together to make this happen. the LGSemiModalNavViewController and the LGSemiModalTransition. 24 | The LGSemiModalNavViewController subscribes to the UIViewControllerTransitioningDelegate. The LGSemiModalTransition subscribes to UIViewControllerAnimatedTransitioning. 25 | 26 | ```objective-c 27 | // LGSemiModalNavViewController.m 28 | 29 | - (id)animationControllerForPresentedController:(UIViewController *)presented 30 | presentingController:(UIViewController *)presenting 31 | sourceController:(UIViewController *)source { 32 | return [self transitionPresenting:YES]; 33 | } 34 | 35 | - (id)animationControllerForDismissedController:(UIViewController *)dismissed { 36 | return [self transitionPresenting:NO]; 37 | } 38 | 39 | -(LGSemiModalTransition*)transitionPresenting:(BOOL)presenting{ 40 | LGSemiModalTransition *animator = [LGSemiModalTransition new]; 41 | animator.presenting = presenting; 42 | animator.tapDismissEnabled = _tapDismissEnabled; 43 | animator.animationSpeed = _animationSpeed; 44 | animator.backgroundShadeColor = _backgroundShadeColor; 45 | animator.scaleTransform = _scaleTransform; 46 | animator.springDamping = _springDamping; 47 | animator.springVelocity = _springVelocity; 48 | animator.backgroundShadeAlpha = _backgroundShadeAlpha; 49 | return animator; 50 | } 51 | ``` 52 | 53 | ## Example 54 | ```objective-c 55 | //This is an example. 56 | LGViewController *lgVC = [[LGViewController alloc]initWithFormat:LGViewControllerFormatGoBack]; 57 | 58 | //This is the nav controller 59 | LGSemiModalNavViewController *semiModal = [[LGSemiModalNavViewController alloc]initWithRootViewController:lgVC]; 60 | //Make sure to set a height on the view controller here. 61 | semiModal.view.frame = CGRectMake(0, 0, self.view.frame.size.width, 400); 62 | 63 | //Selected customization properties, see more in the header of the LGSemiModalNavViewController 64 | semiModal.backgroundShadeColor = [UIColor blackColor]; 65 | semiModal.animationSpeed = 0.35f; 66 | semiModal.tapDismissEnabled = YES; 67 | semiModal.backgroundShadeAlpha = 0.4; 68 | semiModal.scaleTransform = CGAffineTransformMakeScale(.94, .94); 69 | 70 | [self presentViewController:semiModal animated:YES completion:nil]; 71 | 72 | ``` 73 | 74 | ## Usage 75 | 76 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 77 | 78 | 79 | ## Installation 80 | 81 | LGSemiModalNavController is available through [CocoaPods](http://cocoapods.org). To install 82 | it, simply add the following line to your Podfile: 83 | 84 | ```ruby 85 | pod "LGSemiModalNavController" 86 | ``` 87 | 88 | ## Authors 89 | 90 | Special thanks to Mathew Piccinato who helped develop this with me! 91 | 92 | Luke Geiger, @lukejgeiger 93 | 94 | Mathew Piccinato, @mpiccinato 95 | 96 | ## License 97 | 98 | LGSemiModalNavController is available under the MIT license. See the LICENSE file for more info. 99 | -------------------------------------------------------------------------------- /lukegeiger-semi-modal-cocoapod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukegeiger/LGSemiModalNavController/83c63c97a8d15abe853eed33050cb5780817ceb8/lukegeiger-semi-modal-cocoapod.gif -------------------------------------------------------------------------------- /lukegeiger-semi-modal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukegeiger/LGSemiModalNavController/83c63c97a8d15abe853eed33050cb5780817ceb8/lukegeiger-semi-modal.gif -------------------------------------------------------------------------------- /lukegeiger-semi-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukegeiger/LGSemiModalNavController/83c63c97a8d15abe853eed33050cb5780817ceb8/lukegeiger-semi-modal.png --------------------------------------------------------------------------------