├── .gitignore ├── LICENSE ├── README.md ├── TKTransitioningCurpAnimation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── TKTransitioningCurpAnimation.xccheckout │ └── xcuserdata │ │ └── tinkl.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── tinkl.xcuserdatad │ └── xcschemes │ ├── TKTransitioningCurpAnimation.xcscheme │ └── xcschememanagement.plist ├── TKTransitioningCurpAnimation ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── LaunchImage.launchimage │ │ └── Contents.json │ ├── first.imageset │ │ ├── Contents.json │ │ ├── first.png │ │ └── first@2x.png │ └── second.imageset │ │ ├── Contents.json │ │ ├── second.png │ │ └── second@2x.png ├── TKAppDelegate.h ├── TKAppDelegate.m ├── TKFirstViewController.h ├── TKFirstViewController.m ├── TKTransitioningCurpAnimation-Info.plist ├── TKTransitioningCurpAnimation-Prefix.pch ├── TransitioningCurp │ ├── TKNaviViewController.h │ └── TKNaviViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m └── TKTransitioningCurpAnimationTests ├── TKTransitioningCurpAnimationTests-Info.plist ├── TKTransitioningCurpAnimationTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- 1 | # CocoaPods 2 | # 3 | # We recommend against adding the Pods directory to your .gitignore. However 4 | # you should judge for yourself, the pros and cons are mentioned at: 5 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control? 6 | # 7 | # Pods/ 8 | 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | TKTransitioningCurpAnimation 2 | ============================ 3 | 4 | UIViewcontroller 切换动画 支持ios7 5 | 6 | ![image](http://images.cnblogs.com/cnblogs_com/tinkl/253133/o_IMG_1544.PNG) 7 | 8 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 93A65B64191C9F4600B1BE2A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 93A65B63191C9F4600B1BE2A /* Foundation.framework */; }; 11 | 93A65B66191C9F4600B1BE2A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 93A65B65191C9F4600B1BE2A /* CoreGraphics.framework */; }; 12 | 93A65B68191C9F4600B1BE2A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 93A65B67191C9F4600B1BE2A /* UIKit.framework */; }; 13 | 93A65B6E191C9F4600B1BE2A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 93A65B6C191C9F4600B1BE2A /* InfoPlist.strings */; }; 14 | 93A65B70191C9F4600B1BE2A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A65B6F191C9F4600B1BE2A /* main.m */; }; 15 | 93A65B74191C9F4600B1BE2A /* TKAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A65B73191C9F4600B1BE2A /* TKAppDelegate.m */; }; 16 | 93A65B7A191C9F4600B1BE2A /* TKFirstViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A65B79191C9F4600B1BE2A /* TKFirstViewController.m */; }; 17 | 93A65B7F191C9F4600B1BE2A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 93A65B7E191C9F4600B1BE2A /* Images.xcassets */; }; 18 | 93A65B86191C9F4600B1BE2A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 93A65B85191C9F4600B1BE2A /* XCTest.framework */; }; 19 | 93A65B87191C9F4600B1BE2A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 93A65B63191C9F4600B1BE2A /* Foundation.framework */; }; 20 | 93A65B88191C9F4600B1BE2A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 93A65B67191C9F4600B1BE2A /* UIKit.framework */; }; 21 | 93A65B90191C9F4600B1BE2A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 93A65B8E191C9F4600B1BE2A /* InfoPlist.strings */; }; 22 | 93A65B92191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A65B91191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests.m */; }; 23 | 93A65BAD191CC11300B1BE2A /* TKNaviViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A65BAC191CC11300B1BE2A /* TKNaviViewController.m */; }; 24 | /* End PBXBuildFile section */ 25 | 26 | /* Begin PBXContainerItemProxy section */ 27 | 93A65B89191C9F4600B1BE2A /* PBXContainerItemProxy */ = { 28 | isa = PBXContainerItemProxy; 29 | containerPortal = 93A65B58191C9F4600B1BE2A /* Project object */; 30 | proxyType = 1; 31 | remoteGlobalIDString = 93A65B5F191C9F4600B1BE2A; 32 | remoteInfo = TKTransitioningCurpAnimation; 33 | }; 34 | /* End PBXContainerItemProxy section */ 35 | 36 | /* Begin PBXFileReference section */ 37 | 93A65B60191C9F4600B1BE2A /* TKTransitioningCurpAnimation.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TKTransitioningCurpAnimation.app; sourceTree = BUILT_PRODUCTS_DIR; }; 38 | 93A65B63191C9F4600B1BE2A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 39 | 93A65B65191C9F4600B1BE2A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 40 | 93A65B67191C9F4600B1BE2A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 41 | 93A65B6B191C9F4600B1BE2A /* TKTransitioningCurpAnimation-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TKTransitioningCurpAnimation-Info.plist"; sourceTree = ""; }; 42 | 93A65B6D191C9F4600B1BE2A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 43 | 93A65B6F191C9F4600B1BE2A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 44 | 93A65B71191C9F4600B1BE2A /* TKTransitioningCurpAnimation-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TKTransitioningCurpAnimation-Prefix.pch"; sourceTree = ""; }; 45 | 93A65B72191C9F4600B1BE2A /* TKAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TKAppDelegate.h; sourceTree = ""; }; 46 | 93A65B73191C9F4600B1BE2A /* TKAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TKAppDelegate.m; sourceTree = ""; }; 47 | 93A65B78191C9F4600B1BE2A /* TKFirstViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TKFirstViewController.h; sourceTree = ""; }; 48 | 93A65B79191C9F4600B1BE2A /* TKFirstViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TKFirstViewController.m; sourceTree = ""; }; 49 | 93A65B7E191C9F4600B1BE2A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 50 | 93A65B84191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TKTransitioningCurpAnimationTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 51 | 93A65B85191C9F4600B1BE2A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 52 | 93A65B8D191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TKTransitioningCurpAnimationTests-Info.plist"; sourceTree = ""; }; 53 | 93A65B8F191C9F4600B1BE2A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 54 | 93A65B91191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TKTransitioningCurpAnimationTests.m; sourceTree = ""; }; 55 | 93A65BAB191CC11300B1BE2A /* TKNaviViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TKNaviViewController.h; path = TransitioningCurp/TKNaviViewController.h; sourceTree = ""; }; 56 | 93A65BAC191CC11300B1BE2A /* TKNaviViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TKNaviViewController.m; path = TransitioningCurp/TKNaviViewController.m; sourceTree = ""; }; 57 | /* End PBXFileReference section */ 58 | 59 | /* Begin PBXFrameworksBuildPhase section */ 60 | 93A65B5D191C9F4600B1BE2A /* Frameworks */ = { 61 | isa = PBXFrameworksBuildPhase; 62 | buildActionMask = 2147483647; 63 | files = ( 64 | 93A65B66191C9F4600B1BE2A /* CoreGraphics.framework in Frameworks */, 65 | 93A65B68191C9F4600B1BE2A /* UIKit.framework in Frameworks */, 66 | 93A65B64191C9F4600B1BE2A /* Foundation.framework in Frameworks */, 67 | ); 68 | runOnlyForDeploymentPostprocessing = 0; 69 | }; 70 | 93A65B81191C9F4600B1BE2A /* Frameworks */ = { 71 | isa = PBXFrameworksBuildPhase; 72 | buildActionMask = 2147483647; 73 | files = ( 74 | 93A65B86191C9F4600B1BE2A /* XCTest.framework in Frameworks */, 75 | 93A65B88191C9F4600B1BE2A /* UIKit.framework in Frameworks */, 76 | 93A65B87191C9F4600B1BE2A /* Foundation.framework in Frameworks */, 77 | ); 78 | runOnlyForDeploymentPostprocessing = 0; 79 | }; 80 | /* End PBXFrameworksBuildPhase section */ 81 | 82 | /* Begin PBXGroup section */ 83 | 93A65B57191C9F4600B1BE2A = { 84 | isa = PBXGroup; 85 | children = ( 86 | 93A65B69191C9F4600B1BE2A /* TKTransitioningCurpAnimation */, 87 | 93A65B8B191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests */, 88 | 93A65B62191C9F4600B1BE2A /* Frameworks */, 89 | 93A65B61191C9F4600B1BE2A /* Products */, 90 | ); 91 | sourceTree = ""; 92 | }; 93 | 93A65B61191C9F4600B1BE2A /* Products */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 93A65B60191C9F4600B1BE2A /* TKTransitioningCurpAnimation.app */, 97 | 93A65B84191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests.xctest */, 98 | ); 99 | name = Products; 100 | sourceTree = ""; 101 | }; 102 | 93A65B62191C9F4600B1BE2A /* Frameworks */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 93A65B63191C9F4600B1BE2A /* Foundation.framework */, 106 | 93A65B65191C9F4600B1BE2A /* CoreGraphics.framework */, 107 | 93A65B67191C9F4600B1BE2A /* UIKit.framework */, 108 | 93A65B85191C9F4600B1BE2A /* XCTest.framework */, 109 | ); 110 | name = Frameworks; 111 | sourceTree = ""; 112 | }; 113 | 93A65B69191C9F4600B1BE2A /* TKTransitioningCurpAnimation */ = { 114 | isa = PBXGroup; 115 | children = ( 116 | 93A65BAA191CC0F900B1BE2A /* TransSupportios6 */, 117 | 93A65B72191C9F4600B1BE2A /* TKAppDelegate.h */, 118 | 93A65B73191C9F4600B1BE2A /* TKAppDelegate.m */, 119 | 93A65B78191C9F4600B1BE2A /* TKFirstViewController.h */, 120 | 93A65B79191C9F4600B1BE2A /* TKFirstViewController.m */, 121 | 93A65B7E191C9F4600B1BE2A /* Images.xcassets */, 122 | 93A65B6A191C9F4600B1BE2A /* Supporting Files */, 123 | ); 124 | path = TKTransitioningCurpAnimation; 125 | sourceTree = ""; 126 | }; 127 | 93A65B6A191C9F4600B1BE2A /* Supporting Files */ = { 128 | isa = PBXGroup; 129 | children = ( 130 | 93A65B6B191C9F4600B1BE2A /* TKTransitioningCurpAnimation-Info.plist */, 131 | 93A65B6C191C9F4600B1BE2A /* InfoPlist.strings */, 132 | 93A65B6F191C9F4600B1BE2A /* main.m */, 133 | 93A65B71191C9F4600B1BE2A /* TKTransitioningCurpAnimation-Prefix.pch */, 134 | ); 135 | name = "Supporting Files"; 136 | sourceTree = ""; 137 | }; 138 | 93A65B8B191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests */ = { 139 | isa = PBXGroup; 140 | children = ( 141 | 93A65B91191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests.m */, 142 | 93A65B8C191C9F4600B1BE2A /* Supporting Files */, 143 | ); 144 | path = TKTransitioningCurpAnimationTests; 145 | sourceTree = ""; 146 | }; 147 | 93A65B8C191C9F4600B1BE2A /* Supporting Files */ = { 148 | isa = PBXGroup; 149 | children = ( 150 | 93A65B8D191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests-Info.plist */, 151 | 93A65B8E191C9F4600B1BE2A /* InfoPlist.strings */, 152 | ); 153 | name = "Supporting Files"; 154 | sourceTree = ""; 155 | }; 156 | 93A65BAA191CC0F900B1BE2A /* TransSupportios6 */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | 93A65BAB191CC11300B1BE2A /* TKNaviViewController.h */, 160 | 93A65BAC191CC11300B1BE2A /* TKNaviViewController.m */, 161 | ); 162 | name = TransSupportios6; 163 | sourceTree = ""; 164 | }; 165 | /* End PBXGroup section */ 166 | 167 | /* Begin PBXNativeTarget section */ 168 | 93A65B5F191C9F4600B1BE2A /* TKTransitioningCurpAnimation */ = { 169 | isa = PBXNativeTarget; 170 | buildConfigurationList = 93A65B95191C9F4600B1BE2A /* Build configuration list for PBXNativeTarget "TKTransitioningCurpAnimation" */; 171 | buildPhases = ( 172 | 93A65B5C191C9F4600B1BE2A /* Sources */, 173 | 93A65B5D191C9F4600B1BE2A /* Frameworks */, 174 | 93A65B5E191C9F4600B1BE2A /* Resources */, 175 | ); 176 | buildRules = ( 177 | ); 178 | dependencies = ( 179 | ); 180 | name = TKTransitioningCurpAnimation; 181 | productName = TKTransitioningCurpAnimation; 182 | productReference = 93A65B60191C9F4600B1BE2A /* TKTransitioningCurpAnimation.app */; 183 | productType = "com.apple.product-type.application"; 184 | }; 185 | 93A65B83191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests */ = { 186 | isa = PBXNativeTarget; 187 | buildConfigurationList = 93A65B98191C9F4600B1BE2A /* Build configuration list for PBXNativeTarget "TKTransitioningCurpAnimationTests" */; 188 | buildPhases = ( 189 | 93A65B80191C9F4600B1BE2A /* Sources */, 190 | 93A65B81191C9F4600B1BE2A /* Frameworks */, 191 | 93A65B82191C9F4600B1BE2A /* Resources */, 192 | ); 193 | buildRules = ( 194 | ); 195 | dependencies = ( 196 | 93A65B8A191C9F4600B1BE2A /* PBXTargetDependency */, 197 | ); 198 | name = TKTransitioningCurpAnimationTests; 199 | productName = TKTransitioningCurpAnimationTests; 200 | productReference = 93A65B84191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests.xctest */; 201 | productType = "com.apple.product-type.bundle.unit-test"; 202 | }; 203 | /* End PBXNativeTarget section */ 204 | 205 | /* Begin PBXProject section */ 206 | 93A65B58191C9F4600B1BE2A /* Project object */ = { 207 | isa = PBXProject; 208 | attributes = { 209 | CLASSPREFIX = TK; 210 | LastUpgradeCheck = 0510; 211 | ORGANIZATIONNAME = "___TINKL___"; 212 | TargetAttributes = { 213 | 93A65B83191C9F4600B1BE2A = { 214 | TestTargetID = 93A65B5F191C9F4600B1BE2A; 215 | }; 216 | }; 217 | }; 218 | buildConfigurationList = 93A65B5B191C9F4600B1BE2A /* Build configuration list for PBXProject "TKTransitioningCurpAnimation" */; 219 | compatibilityVersion = "Xcode 3.2"; 220 | developmentRegion = English; 221 | hasScannedForEncodings = 0; 222 | knownRegions = ( 223 | en, 224 | Base, 225 | ); 226 | mainGroup = 93A65B57191C9F4600B1BE2A; 227 | productRefGroup = 93A65B61191C9F4600B1BE2A /* Products */; 228 | projectDirPath = ""; 229 | projectRoot = ""; 230 | targets = ( 231 | 93A65B5F191C9F4600B1BE2A /* TKTransitioningCurpAnimation */, 232 | 93A65B83191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests */, 233 | ); 234 | }; 235 | /* End PBXProject section */ 236 | 237 | /* Begin PBXResourcesBuildPhase section */ 238 | 93A65B5E191C9F4600B1BE2A /* Resources */ = { 239 | isa = PBXResourcesBuildPhase; 240 | buildActionMask = 2147483647; 241 | files = ( 242 | 93A65B7F191C9F4600B1BE2A /* Images.xcassets in Resources */, 243 | 93A65B6E191C9F4600B1BE2A /* InfoPlist.strings in Resources */, 244 | ); 245 | runOnlyForDeploymentPostprocessing = 0; 246 | }; 247 | 93A65B82191C9F4600B1BE2A /* Resources */ = { 248 | isa = PBXResourcesBuildPhase; 249 | buildActionMask = 2147483647; 250 | files = ( 251 | 93A65B90191C9F4600B1BE2A /* InfoPlist.strings in Resources */, 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | }; 255 | /* End PBXResourcesBuildPhase section */ 256 | 257 | /* Begin PBXSourcesBuildPhase section */ 258 | 93A65B5C191C9F4600B1BE2A /* Sources */ = { 259 | isa = PBXSourcesBuildPhase; 260 | buildActionMask = 2147483647; 261 | files = ( 262 | 93A65B70191C9F4600B1BE2A /* main.m in Sources */, 263 | 93A65B7A191C9F4600B1BE2A /* TKFirstViewController.m in Sources */, 264 | 93A65B74191C9F4600B1BE2A /* TKAppDelegate.m in Sources */, 265 | 93A65BAD191CC11300B1BE2A /* TKNaviViewController.m in Sources */, 266 | ); 267 | runOnlyForDeploymentPostprocessing = 0; 268 | }; 269 | 93A65B80191C9F4600B1BE2A /* Sources */ = { 270 | isa = PBXSourcesBuildPhase; 271 | buildActionMask = 2147483647; 272 | files = ( 273 | 93A65B92191C9F4600B1BE2A /* TKTransitioningCurpAnimationTests.m in Sources */, 274 | ); 275 | runOnlyForDeploymentPostprocessing = 0; 276 | }; 277 | /* End PBXSourcesBuildPhase section */ 278 | 279 | /* Begin PBXTargetDependency section */ 280 | 93A65B8A191C9F4600B1BE2A /* PBXTargetDependency */ = { 281 | isa = PBXTargetDependency; 282 | target = 93A65B5F191C9F4600B1BE2A /* TKTransitioningCurpAnimation */; 283 | targetProxy = 93A65B89191C9F4600B1BE2A /* PBXContainerItemProxy */; 284 | }; 285 | /* End PBXTargetDependency section */ 286 | 287 | /* Begin PBXVariantGroup section */ 288 | 93A65B6C191C9F4600B1BE2A /* InfoPlist.strings */ = { 289 | isa = PBXVariantGroup; 290 | children = ( 291 | 93A65B6D191C9F4600B1BE2A /* en */, 292 | ); 293 | name = InfoPlist.strings; 294 | sourceTree = ""; 295 | }; 296 | 93A65B8E191C9F4600B1BE2A /* InfoPlist.strings */ = { 297 | isa = PBXVariantGroup; 298 | children = ( 299 | 93A65B8F191C9F4600B1BE2A /* en */, 300 | ); 301 | name = InfoPlist.strings; 302 | sourceTree = ""; 303 | }; 304 | /* End PBXVariantGroup section */ 305 | 306 | /* Begin XCBuildConfiguration section */ 307 | 93A65B93191C9F4600B1BE2A /* Debug */ = { 308 | isa = XCBuildConfiguration; 309 | buildSettings = { 310 | ALWAYS_SEARCH_USER_PATHS = NO; 311 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 312 | CLANG_CXX_LIBRARY = "libc++"; 313 | CLANG_ENABLE_MODULES = YES; 314 | CLANG_ENABLE_OBJC_ARC = YES; 315 | CLANG_WARN_BOOL_CONVERSION = YES; 316 | CLANG_WARN_CONSTANT_CONVERSION = YES; 317 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 318 | CLANG_WARN_EMPTY_BODY = YES; 319 | CLANG_WARN_ENUM_CONVERSION = YES; 320 | CLANG_WARN_INT_CONVERSION = YES; 321 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 322 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 323 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 324 | COPY_PHASE_STRIP = NO; 325 | GCC_C_LANGUAGE_STANDARD = gnu99; 326 | GCC_DYNAMIC_NO_PIC = NO; 327 | GCC_OPTIMIZATION_LEVEL = 0; 328 | GCC_PREPROCESSOR_DEFINITIONS = ( 329 | "DEBUG=1", 330 | "$(inherited)", 331 | ); 332 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 333 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 334 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 335 | GCC_WARN_UNDECLARED_SELECTOR = YES; 336 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 337 | GCC_WARN_UNUSED_FUNCTION = YES; 338 | GCC_WARN_UNUSED_VARIABLE = YES; 339 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 340 | ONLY_ACTIVE_ARCH = YES; 341 | SDKROOT = iphoneos; 342 | }; 343 | name = Debug; 344 | }; 345 | 93A65B94191C9F4600B1BE2A /* Release */ = { 346 | isa = XCBuildConfiguration; 347 | buildSettings = { 348 | ALWAYS_SEARCH_USER_PATHS = NO; 349 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 350 | CLANG_CXX_LIBRARY = "libc++"; 351 | CLANG_ENABLE_MODULES = YES; 352 | CLANG_ENABLE_OBJC_ARC = YES; 353 | CLANG_WARN_BOOL_CONVERSION = YES; 354 | CLANG_WARN_CONSTANT_CONVERSION = YES; 355 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 356 | CLANG_WARN_EMPTY_BODY = YES; 357 | CLANG_WARN_ENUM_CONVERSION = YES; 358 | CLANG_WARN_INT_CONVERSION = YES; 359 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 360 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 361 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 362 | COPY_PHASE_STRIP = YES; 363 | ENABLE_NS_ASSERTIONS = NO; 364 | GCC_C_LANGUAGE_STANDARD = gnu99; 365 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 366 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 367 | GCC_WARN_UNDECLARED_SELECTOR = YES; 368 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 369 | GCC_WARN_UNUSED_FUNCTION = YES; 370 | GCC_WARN_UNUSED_VARIABLE = YES; 371 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 372 | SDKROOT = iphoneos; 373 | VALIDATE_PRODUCT = YES; 374 | }; 375 | name = Release; 376 | }; 377 | 93A65B96191C9F4600B1BE2A /* Debug */ = { 378 | isa = XCBuildConfiguration; 379 | buildSettings = { 380 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 381 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 382 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 383 | GCC_PREFIX_HEADER = "TKTransitioningCurpAnimation/TKTransitioningCurpAnimation-Prefix.pch"; 384 | INFOPLIST_FILE = "TKTransitioningCurpAnimation/TKTransitioningCurpAnimation-Info.plist"; 385 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 386 | PRODUCT_NAME = "$(TARGET_NAME)"; 387 | WRAPPER_EXTENSION = app; 388 | }; 389 | name = Debug; 390 | }; 391 | 93A65B97191C9F4600B1BE2A /* Release */ = { 392 | isa = XCBuildConfiguration; 393 | buildSettings = { 394 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 395 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 396 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 397 | GCC_PREFIX_HEADER = "TKTransitioningCurpAnimation/TKTransitioningCurpAnimation-Prefix.pch"; 398 | INFOPLIST_FILE = "TKTransitioningCurpAnimation/TKTransitioningCurpAnimation-Info.plist"; 399 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 400 | PRODUCT_NAME = "$(TARGET_NAME)"; 401 | WRAPPER_EXTENSION = app; 402 | }; 403 | name = Release; 404 | }; 405 | 93A65B99191C9F4600B1BE2A /* Debug */ = { 406 | isa = XCBuildConfiguration; 407 | buildSettings = { 408 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/TKTransitioningCurpAnimation.app/TKTransitioningCurpAnimation"; 409 | FRAMEWORK_SEARCH_PATHS = ( 410 | "$(SDKROOT)/Developer/Library/Frameworks", 411 | "$(inherited)", 412 | "$(DEVELOPER_FRAMEWORKS_DIR)", 413 | ); 414 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 415 | GCC_PREFIX_HEADER = "TKTransitioningCurpAnimation/TKTransitioningCurpAnimation-Prefix.pch"; 416 | GCC_PREPROCESSOR_DEFINITIONS = ( 417 | "DEBUG=1", 418 | "$(inherited)", 419 | ); 420 | INFOPLIST_FILE = "TKTransitioningCurpAnimationTests/TKTransitioningCurpAnimationTests-Info.plist"; 421 | PRODUCT_NAME = "$(TARGET_NAME)"; 422 | TEST_HOST = "$(BUNDLE_LOADER)"; 423 | WRAPPER_EXTENSION = xctest; 424 | }; 425 | name = Debug; 426 | }; 427 | 93A65B9A191C9F4600B1BE2A /* Release */ = { 428 | isa = XCBuildConfiguration; 429 | buildSettings = { 430 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/TKTransitioningCurpAnimation.app/TKTransitioningCurpAnimation"; 431 | FRAMEWORK_SEARCH_PATHS = ( 432 | "$(SDKROOT)/Developer/Library/Frameworks", 433 | "$(inherited)", 434 | "$(DEVELOPER_FRAMEWORKS_DIR)", 435 | ); 436 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 437 | GCC_PREFIX_HEADER = "TKTransitioningCurpAnimation/TKTransitioningCurpAnimation-Prefix.pch"; 438 | INFOPLIST_FILE = "TKTransitioningCurpAnimationTests/TKTransitioningCurpAnimationTests-Info.plist"; 439 | PRODUCT_NAME = "$(TARGET_NAME)"; 440 | TEST_HOST = "$(BUNDLE_LOADER)"; 441 | WRAPPER_EXTENSION = xctest; 442 | }; 443 | name = Release; 444 | }; 445 | /* End XCBuildConfiguration section */ 446 | 447 | /* Begin XCConfigurationList section */ 448 | 93A65B5B191C9F4600B1BE2A /* Build configuration list for PBXProject "TKTransitioningCurpAnimation" */ = { 449 | isa = XCConfigurationList; 450 | buildConfigurations = ( 451 | 93A65B93191C9F4600B1BE2A /* Debug */, 452 | 93A65B94191C9F4600B1BE2A /* Release */, 453 | ); 454 | defaultConfigurationIsVisible = 0; 455 | defaultConfigurationName = Release; 456 | }; 457 | 93A65B95191C9F4600B1BE2A /* Build configuration list for PBXNativeTarget "TKTransitioningCurpAnimation" */ = { 458 | isa = XCConfigurationList; 459 | buildConfigurations = ( 460 | 93A65B96191C9F4600B1BE2A /* Debug */, 461 | 93A65B97191C9F4600B1BE2A /* Release */, 462 | ); 463 | defaultConfigurationIsVisible = 0; 464 | defaultConfigurationName = Release; 465 | }; 466 | 93A65B98191C9F4600B1BE2A /* Build configuration list for PBXNativeTarget "TKTransitioningCurpAnimationTests" */ = { 467 | isa = XCConfigurationList; 468 | buildConfigurations = ( 469 | 93A65B99191C9F4600B1BE2A /* Debug */, 470 | 93A65B9A191C9F4600B1BE2A /* Release */, 471 | ); 472 | defaultConfigurationIsVisible = 0; 473 | defaultConfigurationName = Release; 474 | }; 475 | /* End XCConfigurationList section */ 476 | }; 477 | rootObject = 93A65B58191C9F4600B1BE2A /* Project object */; 478 | } 479 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation.xcodeproj/project.xcworkspace/xcshareddata/TKTransitioningCurpAnimation.xccheckout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDESourceControlProjectFavoriteDictionaryKey 6 | 7 | IDESourceControlProjectIdentifier 8 | B73B0C0C-5602-40AB-B6AA-9DE4FF0AB7F8 9 | IDESourceControlProjectName 10 | TKTransitioningCurpAnimation 11 | IDESourceControlProjectOriginsDictionary 12 | 13 | 6E8F4AC2033651F351BB7D7EDE6937E02163F062 14 | https://github.com/nicolastinkl/TKTransitioningCurpAnimation 15 | 16 | IDESourceControlProjectPath 17 | TKTransitioningCurpAnimation.xcodeproj 18 | IDESourceControlProjectRelativeInstallPathDictionary 19 | 20 | 6E8F4AC2033651F351BB7D7EDE6937E02163F062 21 | ../.. 22 | 23 | IDESourceControlProjectURL 24 | https://github.com/nicolastinkl/TKTransitioningCurpAnimation 25 | IDESourceControlProjectVersion 26 | 111 27 | IDESourceControlProjectWCCIdentifier 28 | 6E8F4AC2033651F351BB7D7EDE6937E02163F062 29 | IDESourceControlProjectWCConfigurations 30 | 31 | 32 | IDESourceControlRepositoryExtensionIdentifierKey 33 | public.vcs.git 34 | IDESourceControlWCCIdentifierKey 35 | 6E8F4AC2033651F351BB7D7EDE6937E02163F062 36 | IDESourceControlWCCName 37 | TKTransitioningCurpAnimation 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation.xcodeproj/project.xcworkspace/xcuserdata/tinkl.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolastinkl/TKTransitioningCurpAnimation/541099c14413d23a4cbb8b6c0e980e33d5bd7cc2/TKTransitioningCurpAnimation.xcodeproj/project.xcworkspace/xcuserdata/tinkl.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation.xcodeproj/xcuserdata/tinkl.xcuserdatad/xcschemes/TKTransitioningCurpAnimation.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 | 62 | 68 | 69 | 70 | 71 | 72 | 73 | 79 | 80 | 86 | 87 | 88 | 89 | 91 | 92 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation.xcodeproj/xcuserdata/tinkl.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | TKTransitioningCurpAnimation.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | 93A65B5F191C9F4600B1BE2A 16 | 17 | primary 18 | 19 | 20 | 93A65B83191C9F4600B1BE2A 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/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 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/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 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/Images.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "first.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "first@2x.png" 12 | } 13 | ], 14 | "info" : { 15 | "version" : 1, 16 | "author" : "xcode" 17 | } 18 | } -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/Images.xcassets/first.imageset/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolastinkl/TKTransitioningCurpAnimation/541099c14413d23a4cbb8b6c0e980e33d5bd7cc2/TKTransitioningCurpAnimation/Images.xcassets/first.imageset/first.png -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/Images.xcassets/first.imageset/first@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolastinkl/TKTransitioningCurpAnimation/541099c14413d23a4cbb8b6c0e980e33d5bd7cc2/TKTransitioningCurpAnimation/Images.xcassets/first.imageset/first@2x.png -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/Images.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "second.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "second@2x.png" 12 | } 13 | ], 14 | "info" : { 15 | "version" : 1, 16 | "author" : "xcode" 17 | } 18 | } -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/Images.xcassets/second.imageset/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolastinkl/TKTransitioningCurpAnimation/541099c14413d23a4cbb8b6c0e980e33d5bd7cc2/TKTransitioningCurpAnimation/Images.xcassets/second.imageset/second.png -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/Images.xcassets/second.imageset/second@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolastinkl/TKTransitioningCurpAnimation/541099c14413d23a4cbb8b6c0e980e33d5bd7cc2/TKTransitioningCurpAnimation/Images.xcassets/second.imageset/second@2x.png -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/TKAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // TKAppDelegate.h 3 | // TKTransitioningCurpAnimation 4 | // 5 | // Created by tinkl on 9/5/14. 6 | // Copyright (c) 2014 ___TINKL___. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TKAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/TKAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // TKAppDelegate.m 3 | // TKTransitioningCurpAnimation 4 | // 5 | // Created by tinkl on 9/5/14. 6 | // Copyright (c) 2014 ___TINKL___. All rights reserved. 7 | // 8 | 9 | #import "TKAppDelegate.h" 10 | #import "TKNavigatoinController.h" 11 | #import "TKFirstViewController.h" 12 | #import "TKNaviViewController.h" 13 | 14 | #define IOS7Device [[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0 15 | 16 | @implementation TKAppDelegate 17 | 18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 19 | { 20 | // Override point for customization after application launch. 21 | self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 22 | TKNaviViewController * navi = [[TKNaviViewController alloc] initWithRootViewController:[[TKFirstViewController alloc] init]]; 23 | self.window.rootViewController = navi; 24 | [self.window makeKeyAndVisible]; 25 | 26 | if (IOS7Device) { 27 | [[UINavigationBar appearance] setTintColor:[UIColor whiteColor]]; 28 | [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"navigationbarbg"] forBarMetrics:UIBarMetricsDefault]; 29 | [application setStatusBarStyle:UIStatusBarStyleLightContent]; 30 | } 31 | return YES; 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 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/TKFirstViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // TKFirstViewController.h 3 | // TKTransitioningCurpAnimation 4 | // 5 | // Created by tinkl on 9/5/14. 6 | // Copyright (c) 2014 ___TINKL___. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "TKSuperViewController.h" 12 | 13 | @interface TKFirstViewController : UIViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/TKFirstViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // TKFirstViewController.m 3 | // TKTransitioningCurpAnimation 4 | // 5 | // Created by tinkl on 9/5/14. 6 | // Copyright (c) 2014 ___TINKL___. All rights reserved. 7 | // 8 | 9 | #import "TKFirstViewController.h" 10 | 11 | #define ios7BlueColor [UIColor colorWithRed:0.188 green:0.655 blue:1.000 alpha:1.000] 12 | 13 | @interface TKFirstViewController () 14 | 15 | @end 16 | 17 | @implementation TKFirstViewController 18 | 19 | - (void)viewDidLoad 20 | { 21 | [super viewDidLoad]; 22 | self.title = [NSString stringWithFormat:@"title %lu",(unsigned long)self.navigationController.viewControllers.count]; 23 | 24 | self.view.backgroundColor = [UIColor whiteColor]; 25 | 26 | // Do any additional setup after loading the view, typically from a nib. 27 | 28 | UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom]; 29 | 30 | button.frame = CGRectMake(80.0, 180.0, 160.0, 40.0); 31 | 32 | button.layer.cornerRadius = 3; 33 | button.layer.masksToBounds = YES; 34 | 35 | button.layer.borderWidth = 1; 36 | button.layer.borderColor = [ios7BlueColor CGColor]; 37 | 38 | 39 | [button setTitle:@"push me" forState:UIControlStateNormal]; 40 | [button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal]; 41 | [button setTitleColor:[UIColor blueColor] forState:UIControlStateHighlighted]; 42 | [button addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside]; 43 | [self.view addSubview:button]; 44 | 45 | } 46 | 47 | -(IBAction)buttonClicked:(id)sender 48 | { 49 | TKFirstViewController * view = [[TKFirstViewController alloc] init]; 50 | [self.navigationController pushViewController:view animated:YES]; 51 | 52 | } 53 | 54 | - (void)didReceiveMemoryWarning 55 | { 56 | [super didReceiveMemoryWarning]; 57 | // Dispose of any resources that can be recreated. 58 | } 59 | 60 | @end 61 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/TKTransitioningCurpAnimation-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | LifeStyle.${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 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UIStatusBarTintParameters 32 | 33 | UINavigationBar 34 | 35 | Style 36 | UIBarStyleDefault 37 | Translucent 38 | 39 | 40 | 41 | UISupportedInterfaceOrientations 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationPortraitUpsideDown 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/TKTransitioningCurpAnimation-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/TransitioningCurp/TKNaviViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // TKNaviViewController.h 3 | // TKTransitioningCurpAnimation 4 | // 5 | // Created by tinkl on 9/5/14. 6 | // Copyright (c) 2014 ___TINKL___. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TKNaviViewController : UINavigationController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/TransitioningCurp/TKNaviViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // TKNaviViewController.m 3 | // TKTransitioningCurpAnimation 4 | // 5 | // Created by tinkl on 9/5/14. 6 | // Copyright (c) 2014 ___TINKL___. All rights reserved. 7 | // 8 | 9 | #import "TKNaviViewController.h" 10 | 11 | #define IOS7 [[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0 12 | #define KEY_WINDOW [[UIApplication sharedApplication]keyWindow] 13 | #define MainScreenHeight [UIScreen mainScreen].bounds.size.height 14 | #define MainScreenWidth [UIScreen mainScreen].bounds.size.width 15 | 16 | CGFloat const MMDrawerDefaultShadowRadius = 3.0f; 17 | CGFloat const MMDrawerDefaultShadowOpacity = 0.5; 18 | 19 | @interface TKNaviViewController () { 20 | CGPoint startPoint; 21 | 22 | UIImageView *lastScreenShotView;// view 23 | } 24 | 25 | @property (nonatomic, strong) UIView *backGroundView; 26 | 27 | @property (nonatomic, strong) NSMutableArray *screenShotList; 28 | 29 | @property (nonatomic, assign) BOOL isMoving; 30 | 31 | @end 32 | 33 | static CGFloat offset_float = 0.55;// Stretching parameters 34 | static CGFloat min_distance = 160;// The minimum distance Rebound 35 | 36 | @implementation TKNaviViewController 37 | 38 | 39 | 40 | - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil 41 | { 42 | self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; 43 | if (self) { 44 | // Custom initialization 45 | } 46 | return self; 47 | } 48 | 49 | 50 | - (NSMutableArray *)screenShotList { 51 | if (!_screenShotList) { 52 | _screenShotList = [[NSMutableArray alloc] initWithCapacity:10]; 53 | } 54 | return _screenShotList; 55 | } 56 | 57 | - (void)viewDidLoad { 58 | [super viewDidLoad]; 59 | 60 | self.interactivePopGestureRecognizer.enabled = NO; 61 | 62 | // Do any additional setup after loading the view. 63 | UIPanGestureRecognizer *recognizer = [[UIPanGestureRecognizer alloc]initWithTarget:self 64 | action:@selector(paningGestureReceive:)]; 65 | [recognizer delaysTouchesBegan]; 66 | [self.view addGestureRecognizer:recognizer]; 67 | [self settingsShadow]; 68 | } 69 | 70 | // override the pop method 71 | - (UIViewController *)popViewControllerAnimated:(BOOL)animated { 72 | // 有动画用自己的动画 73 | if (animated) { 74 | [self popAnimation]; 75 | return nil; 76 | } else { 77 | [self.screenShotList removeLastObject]; 78 | return [super popViewControllerAnimated:animated]; 79 | } 80 | } 81 | 82 | - (void) popAnimation { 83 | if (self.viewControllers.count == 1) { 84 | return; 85 | } 86 | [self settingsShadow]; 87 | 88 | if (!self.backGroundView) { 89 | CGRect frame = self.view.frame; 90 | 91 | CGFloat floatBarheight = 0.0f; 92 | if (IOS7) 93 | floatBarheight = 64.0f; 94 | else 95 | floatBarheight = 44.0f; 96 | _backGroundView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, frame.size.width , frame.size.height)]; 97 | 98 | _backGroundView.backgroundColor = [UIColor blackColor]; 99 | 100 | } 101 | 102 | [self.view.superview insertSubview:self.backGroundView belowSubview:self.view]; 103 | 104 | _backGroundView.hidden = NO; 105 | 106 | if (lastScreenShotView) [lastScreenShotView removeFromSuperview]; 107 | 108 | UIImage *lastScreenShot = [self.screenShotList lastObject]; 109 | 110 | lastScreenShotView = [[UIImageView alloc] initWithImage:lastScreenShot]; 111 | 112 | CGFloat floatBarheight = 0.0f; 113 | if (IOS7) 114 | floatBarheight = 64.0f; 115 | else 116 | floatBarheight = 44.0f; 117 | 118 | lastScreenShotView.frame = (CGRect){-(MainScreenWidth*offset_float),0,320,MainScreenHeight}; 119 | 120 | [self.backGroundView addSubview:lastScreenShotView]; 121 | 122 | [UIView animateWithDuration:.3 animations:^{ 123 | 124 | [self moveViewWithX:320]; 125 | 126 | } completion:^(BOOL finished) { 127 | [self gestureAnimation:NO]; 128 | 129 | CGRect frame = self.view.frame; 130 | 131 | frame.origin.x = 0; 132 | 133 | self.view.frame = frame; 134 | 135 | _isMoving = NO; 136 | 137 | self.backGroundView.hidden = YES; 138 | }]; 139 | } 140 | 141 | 142 | /*! 143 | * shadow 144 | */ 145 | -(void) settingsShadow 146 | { 147 | UIView * centerView = self.view; 148 | centerView.layer.masksToBounds = NO; 149 | centerView.layer.shadowRadius = MMDrawerDefaultShadowRadius; 150 | centerView.layer.shadowOpacity = MMDrawerDefaultShadowOpacity; 151 | 152 | /** In the event this gets called a lot, we won't update the shadowPath 153 | unless it needs to be updated (like during rotation) */ 154 | if (centerView.layer.shadowPath == NULL) { 155 | centerView.layer.shadowPath = [[UIBezierPath bezierPathWithRect:centerView.bounds] CGPath]; 156 | } 157 | else{ 158 | CGRect currentPath = CGPathGetPathBoundingBox(centerView.layer.shadowPath); 159 | if (CGRectEqualToRect(currentPath, centerView.bounds) == NO){ 160 | centerView.layer.shadowPath = [[UIBezierPath bezierPathWithRect:centerView.bounds] CGPath]; 161 | } 162 | } 163 | 164 | 165 | } 166 | 167 | 168 | 169 | - (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated 170 | { 171 | [self.screenShotList addObject:[self capture]]; 172 | [super pushViewController:viewController animated:animated]; 173 | } 174 | 175 | 176 | #pragma mark - Utility Methods - 177 | // get the current view screen shot 178 | - (UIImage *)capture 179 | { 180 | // NSLog(@"%f",self.visibleViewController.view.bounds.size.height); 181 | UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, self.view.opaque, 0.0); 182 | 183 | [self.view.layer renderInContext:UIGraphicsGetCurrentContext()]; 184 | 185 | UIImage * img = UIGraphicsGetImageFromCurrentImageContext(); 186 | 187 | UIGraphicsEndImageContext(); 188 | 189 | return img; 190 | } 191 | 192 | // set lastScreenShotView 's position when paning 193 | - (void)moveViewWithX:(float)x 194 | { 195 | x = x>320?320:x; 196 | 197 | x = x<0?0:x; 198 | 199 | CGRect frame = self.view.frame; 200 | frame.origin.x = x; 201 | self.view.frame = frame; 202 | // TODO 203 | lastScreenShotView.frame = (CGRect){-(MainScreenWidth*offset_float)+x*offset_float,0,320,MainScreenHeight}; 204 | } 205 | 206 | - (void)gestureAnimation:(BOOL)animated { 207 | [self.screenShotList removeLastObject]; 208 | [super popViewControllerAnimated:animated]; 209 | } 210 | 211 | #pragma mark - Gesture Recognizer - 212 | - (void)paningGestureReceive:(UIPanGestureRecognizer *)recoginzer 213 | { 214 | // If the viewControllers has only one vc or disable the interaction, then return. 215 | if (self.viewControllers.count <= 1) return; 216 | 217 | // we get the touch position by the window's coordinate 218 | CGPoint touchPoint = [recoginzer locationInView:KEY_WINDOW]; 219 | 220 | // begin paning, show the backgroundView(last screenshot),if not exist, create it. 221 | if (recoginzer.state == UIGestureRecognizerStateBegan) { 222 | 223 | _isMoving = YES; 224 | 225 | startPoint = touchPoint; 226 | 227 | if (!self.backGroundView) { 228 | CGRect frame = self.view.frame; 229 | 230 | _backGroundView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, frame.size.width , frame.size.height)]; 231 | 232 | _backGroundView.backgroundColor = [UIColor blackColor]; 233 | 234 | } 235 | [self.view.superview insertSubview:self.backGroundView belowSubview:self.view]; 236 | 237 | _backGroundView.hidden = NO; 238 | 239 | if (lastScreenShotView) [lastScreenShotView removeFromSuperview]; 240 | 241 | UIImage *lastScreenShot = [self.screenShotList lastObject]; 242 | 243 | lastScreenShotView = [[UIImageView alloc] initWithImage:lastScreenShot]; 244 | 245 | lastScreenShotView.frame = (CGRect){-(MainScreenWidth*offset_float),0,320,MainScreenHeight}; 246 | 247 | [self.backGroundView addSubview:lastScreenShotView]; 248 | 249 | //End paning, always check that if it should move right or move left automatically 250 | }else if (recoginzer.state == UIGestureRecognizerStateEnded){ 251 | 252 | if (touchPoint.x - startPoint.x > min_distance) 253 | { 254 | [UIView animateWithDuration:0.3 animations:^{ 255 | 256 | [self moveViewWithX:MainScreenWidth]; 257 | 258 | } completion:^(BOOL finished) { 259 | [self gestureAnimation:NO]; 260 | 261 | CGRect frame = self.view.frame; 262 | 263 | frame.origin.x = 0; 264 | 265 | self.view.frame = frame; 266 | 267 | _isMoving = NO; 268 | }]; 269 | } 270 | else 271 | { 272 | [UIView animateWithDuration:0.3 animations:^{ 273 | [self moveViewWithX:0]; 274 | } completion:^(BOOL finished) { 275 | _isMoving = NO; 276 | 277 | self.backGroundView.hidden = YES; 278 | }]; 279 | 280 | } 281 | return; 282 | // cancal panning, alway move to left side automatically 283 | }else if (recoginzer.state == UIGestureRecognizerStateCancelled){ 284 | 285 | [UIView animateWithDuration:0.3 animations:^{ 286 | [self moveViewWithX:0]; 287 | } completion:^(BOOL finished) { 288 | _isMoving = NO; 289 | 290 | self.backGroundView.hidden = YES; 291 | }]; 292 | 293 | return; 294 | } 295 | // it keeps move with touch 296 | if (_isMoving) { 297 | [self moveViewWithX:touchPoint.x - startPoint.x]; 298 | } 299 | } 300 | 301 | 302 | - (void)didReceiveMemoryWarning { 303 | [super didReceiveMemoryWarning]; 304 | // Dispose of any resources that can be recreated. 305 | } 306 | 307 | @end 308 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimation/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TKTransitioningCurpAnimation 4 | // 5 | // Created by tinkl on 9/5/14. 6 | // Copyright (c) 2014 ___TINKL___. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "TKAppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([TKAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimationTests/TKTransitioningCurpAnimationTests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | LifeStyle.${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 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimationTests/TKTransitioningCurpAnimationTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // TKTransitioningCurpAnimationTests.m 3 | // TKTransitioningCurpAnimationTests 4 | // 5 | // Created by tinkl on 9/5/14. 6 | // Copyright (c) 2014 ___TINKL___. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TKTransitioningCurpAnimationTests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation TKTransitioningCurpAnimationTests 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 | -------------------------------------------------------------------------------- /TKTransitioningCurpAnimationTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------