├── .gitignore ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ └── TTAnalyzeLoadTime │ │ │ │ └── PodLoadTime.h │ │ └── Public │ │ │ └── TTAnalyzeLoadTime │ │ │ └── PodLoadTime.h │ ├── Local Podspecs │ │ └── TTAnalyzeLoadTime.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-TTAnalyzeLoadTime_Example │ │ ├── Info.plist │ │ ├── Pods-TTAnalyzeLoadTime_Example-acknowledgements.markdown │ │ ├── Pods-TTAnalyzeLoadTime_Example-acknowledgements.plist │ │ ├── Pods-TTAnalyzeLoadTime_Example-dummy.m │ │ ├── Pods-TTAnalyzeLoadTime_Example-frameworks.sh │ │ ├── Pods-TTAnalyzeLoadTime_Example-resources.sh │ │ ├── Pods-TTAnalyzeLoadTime_Example-umbrella.h │ │ ├── Pods-TTAnalyzeLoadTime_Example.debug.xcconfig │ │ ├── Pods-TTAnalyzeLoadTime_Example.modulemap │ │ └── Pods-TTAnalyzeLoadTime_Example.release.xcconfig │ │ ├── Pods-TTAnalyzeLoadTime_Tests │ │ ├── Info.plist │ │ ├── Pods-TTAnalyzeLoadTime_Tests-acknowledgements.markdown │ │ ├── Pods-TTAnalyzeLoadTime_Tests-acknowledgements.plist │ │ ├── Pods-TTAnalyzeLoadTime_Tests-dummy.m │ │ ├── Pods-TTAnalyzeLoadTime_Tests-frameworks.sh │ │ ├── Pods-TTAnalyzeLoadTime_Tests-resources.sh │ │ ├── Pods-TTAnalyzeLoadTime_Tests-umbrella.h │ │ ├── Pods-TTAnalyzeLoadTime_Tests.debug.xcconfig │ │ ├── Pods-TTAnalyzeLoadTime_Tests.modulemap │ │ └── Pods-TTAnalyzeLoadTime_Tests.release.xcconfig │ │ └── TTAnalyzeLoadTime │ │ ├── Info.plist │ │ ├── TTAnalyzeLoadTime-dummy.m │ │ ├── TTAnalyzeLoadTime-prefix.pch │ │ ├── TTAnalyzeLoadTime-umbrella.h │ │ ├── TTAnalyzeLoadTime.modulemap │ │ └── TTAnalyzeLoadTime.xcconfig ├── TTAnalyzeLoadTime.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── TTAnalyzeLoadTime-Example.xcscheme │ │ └── TTLoadTime.xcscheme ├── TTAnalyzeLoadTime.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings ├── TTAnalyzeLoadTime │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── TTAnalyzeLoadTime-Info.plist │ ├── TTAnalyzeLoadTime-Prefix.pch │ ├── TTAppDelegate.h │ ├── TTAppDelegate.m │ ├── TTViewController+LoadTimer.h │ ├── TTViewController+LoadTimer.m │ ├── TTViewController.h │ ├── TTViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── TTLoadTime │ ├── Info.plist │ ├── TTLoadTime.h │ └── TTLoadTime.mm └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Pod └── Products │ └── lib │ ├── TTLoadTime.framework.dSYM │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── TTLoadTime │ └── TTLoadTime.framework │ ├── Headers │ └── TTLoadTime.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ └── TTLoadTime ├── Products └── TTLoadTime.framework │ ├── Headers │ └── TTLoadTime.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ └── TTLoadTime ├── README.md ├── TTAnalyzeLoadTime.podspec ├── TTAnalyzeLoadTime ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── PodLoadTime.h │ └── PodLoadTime.m └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | Example/Index 23 | build_framework.sh 24 | 25 | # Bundler 26 | .bundle 27 | 28 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 29 | # Carthage/Checkouts 30 | 31 | Carthage/Build 32 | 33 | # We recommend against adding the Pods directory to your .gitignore. However 34 | # you should judge for yourself, the pros and cons are mentioned at: 35 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 36 | # 37 | # Note: if you ignore the Pods directory, make sure to uncomment 38 | # `pod install` in .travis.yml 39 | # 40 | # Pods/ 41 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | 2 | 3 | platform :ios, '8.0' 4 | 5 | target 'TTAnalyzeLoadTime_Example' do 6 | #pod 'TTAnalyzeLoadTime', :path => '../' 7 | 8 | target 'TTAnalyzeLoadTime_Tests' do 9 | inherit! :search_paths 10 | 11 | end 12 | end 13 | 14 | 15 | #post_install do |installer_representation| 16 | # installer_representation.pods_project.targets.each do |target| 17 | # if target.name.to_s == 'TTAnalyzeLoadTime' 18 | # target.build_configurations.each do |config| 19 | # config.build_settings['MACH_O_TYPE'] = 'mh_dylib' 20 | # end 21 | # end 22 | # end 23 | #end 24 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - TTAnalyzeLoadTime (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - TTAnalyzeLoadTime (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | TTAnalyzeLoadTime: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | TTAnalyzeLoadTime: 181a23a08518028afbd30ebb0769abb2d1a110e6 13 | 14 | PODFILE CHECKSUM: e759a89f7527698d5d8db21d623a75e2603724d9 15 | 16 | COCOAPODS: 1.5.3 17 | -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/TTAnalyzeLoadTime/PodLoadTime.h: -------------------------------------------------------------------------------- 1 | ../../../../../TTAnalyzeLoadTime/Classes/PodLoadTime.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/TTAnalyzeLoadTime/PodLoadTime.h: -------------------------------------------------------------------------------- 1 | ../../../../../TTAnalyzeLoadTime/Classes/PodLoadTime.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/TTAnalyzeLoadTime.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "TTAnalyzeLoadTime", 3 | "version": "0.1.0", 4 | "summary": "A short description of TTAnalyzeLoadTime.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/huakucha/TTAnalyzeLoadTime", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "huakucha": "yuan1.liu@quvideo.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/huakucha/TTAnalyzeLoadTime.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "TTAnalyzeLoadTime/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - TTAnalyzeLoadTime (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - TTAnalyzeLoadTime (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | TTAnalyzeLoadTime: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | TTAnalyzeLoadTime: 181a23a08518028afbd30ebb0769abb2d1a110e6 13 | 14 | PODFILE CHECKSUM: e759a89f7527698d5d8db21d623a75e2603724d9 15 | 16 | COCOAPODS: 1.5.3 17 | -------------------------------------------------------------------------------- /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 | 4C1E0CAF5BAE5A0798A0DC5D5585BD4F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 11 | 60D7D48ED5E2195AC7DD1ABE99DDE7C2 /* TTAnalyzeLoadTime-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E8EA1F414FD5E3C094B6B5E08E344AB /* TTAnalyzeLoadTime-dummy.m */; }; 12 | 8326B4A07EE00E9C2DE9A09A6ADCDBAA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 13 | 8DF8A7274B33E550E39522BA077CBA15 /* PodLoadTime.m in Sources */ = {isa = PBXBuildFile; fileRef = 93C3BB08D10F0BD99F938BC0A894B9BA /* PodLoadTime.m */; }; 14 | 923FFA4ECF25CD0AF801AC5FC9E01FB2 /* Pods-TTAnalyzeLoadTime_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ED8F8CAAC187ECFA0E180730CAEF37F9 /* Pods-TTAnalyzeLoadTime_Example-dummy.m */; }; 15 | 92D116758B52B593C93DB78C492541D8 /* PodLoadTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 050D341D5F3C0FAD96B2BB9EF8E9BE4A /* PodLoadTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; 16 | D177ADCC9B5FA620CF55B46A694085C9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 17 | D3F18AC915D71F70364B4A368E9E860C /* Pods-TTAnalyzeLoadTime_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB9443ECFCAFE2AA9777499BCF79177 /* Pods-TTAnalyzeLoadTime_Tests-dummy.m */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 6F6D86431BB4F78D662AC878DD59C9E9 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = B2DCE37BB9D2C41D85D5C879A1B13742; 26 | remoteInfo = TTAnalyzeLoadTime; 27 | }; 28 | 812682E9F22F63F5F9566CCA1FB7CB4D /* PBXContainerItemProxy */ = { 29 | isa = PBXContainerItemProxy; 30 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 31 | proxyType = 1; 32 | remoteGlobalIDString = D53C28AA8FE32C7916E4AC763262ED46; 33 | remoteInfo = "Pods-TTAnalyzeLoadTime_Example"; 34 | }; 35 | /* End PBXContainerItemProxy section */ 36 | 37 | /* Begin PBXFileReference section */ 38 | 050D341D5F3C0FAD96B2BB9EF8E9BE4A /* PodLoadTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PodLoadTime.h; path = TTAnalyzeLoadTime/Classes/PodLoadTime.h; sourceTree = ""; }; 39 | 05389251F75662298FDA1135CC971034 /* libPods-TTAnalyzeLoadTime_Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-TTAnalyzeLoadTime_Example.a"; path = "libPods-TTAnalyzeLoadTime_Example.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 40 | 0BB91DF5CF52FF05E5AF8C78530F2C57 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 41 | 1924827A6050E57A0A0EEFFE28CC5E49 /* Pods-TTAnalyzeLoadTime_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TTAnalyzeLoadTime_Tests-resources.sh"; sourceTree = ""; }; 42 | 1EB9443ECFCAFE2AA9777499BCF79177 /* Pods-TTAnalyzeLoadTime_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TTAnalyzeLoadTime_Tests-dummy.m"; sourceTree = ""; }; 43 | 3991D9999C40294EA36310D44C99CF4F /* libTTAnalyzeLoadTime.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libTTAnalyzeLoadTime.a; path = libTTAnalyzeLoadTime.a; sourceTree = BUILT_PRODUCTS_DIR; }; 44 | 57CDAACA9ED21F83318DFF0966FD9D3F /* Pods-TTAnalyzeLoadTime_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TTAnalyzeLoadTime_Example-acknowledgements.markdown"; sourceTree = ""; }; 45 | 5FC0FC441319BC4781DB643986C3394A /* Pods-TTAnalyzeLoadTime_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TTAnalyzeLoadTime_Example-frameworks.sh"; sourceTree = ""; }; 46 | 624AC656794A2E3323718A3F285345C0 /* TTAnalyzeLoadTime.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TTAnalyzeLoadTime.xcconfig; sourceTree = ""; }; 47 | 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 48 | 68582836E913A44878F2CD495DFC3C31 /* libPods-TTAnalyzeLoadTime_Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-TTAnalyzeLoadTime_Tests.a"; path = "libPods-TTAnalyzeLoadTime_Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | 8E8EA1F414FD5E3C094B6B5E08E344AB /* TTAnalyzeLoadTime-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TTAnalyzeLoadTime-dummy.m"; sourceTree = ""; }; 50 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 51 | 93C3BB08D10F0BD99F938BC0A894B9BA /* PodLoadTime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PodLoadTime.m; path = TTAnalyzeLoadTime/Classes/PodLoadTime.m; sourceTree = ""; }; 52 | 952BA393896FB142C0CBA93165709D50 /* Pods-TTAnalyzeLoadTime_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TTAnalyzeLoadTime_Tests.release.xcconfig"; sourceTree = ""; }; 53 | B5391AC47F7DA771BF3417817910D253 /* Pods-TTAnalyzeLoadTime_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TTAnalyzeLoadTime_Example-resources.sh"; sourceTree = ""; }; 54 | B6C98DF09CB86ED133D48AC12B7EAAFD /* Pods-TTAnalyzeLoadTime_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TTAnalyzeLoadTime_Tests-acknowledgements.plist"; sourceTree = ""; }; 55 | C1FD07115F7DC7F7BAC7917BB2671351 /* TTAnalyzeLoadTime.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = TTAnalyzeLoadTime.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 56 | C4D55A04E20FF2B51BAF9FFC9802CDBB /* Pods-TTAnalyzeLoadTime_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TTAnalyzeLoadTime_Tests.debug.xcconfig"; sourceTree = ""; }; 57 | D0AF21679FFB93D3421444689C93B443 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 58 | DF740A9005BAECF98BC679DB96C0FBA3 /* TTAnalyzeLoadTime-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TTAnalyzeLoadTime-prefix.pch"; sourceTree = ""; }; 59 | E47D9B182A3E823F4FD7609AB0185470 /* Pods-TTAnalyzeLoadTime_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TTAnalyzeLoadTime_Tests-frameworks.sh"; sourceTree = ""; }; 60 | ED8F8CAAC187ECFA0E180730CAEF37F9 /* Pods-TTAnalyzeLoadTime_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TTAnalyzeLoadTime_Example-dummy.m"; sourceTree = ""; }; 61 | F0D193C84D027F8EB10DD500FAAB993A /* Pods-TTAnalyzeLoadTime_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TTAnalyzeLoadTime_Example.release.xcconfig"; sourceTree = ""; }; 62 | F8F9A272138FE5137DDE1EF3D1E091BD /* Pods-TTAnalyzeLoadTime_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TTAnalyzeLoadTime_Example-acknowledgements.plist"; sourceTree = ""; }; 63 | FDA54B6C260C24767E6958101C6B4521 /* Pods-TTAnalyzeLoadTime_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TTAnalyzeLoadTime_Tests-acknowledgements.markdown"; sourceTree = ""; }; 64 | FF7524DF354F6C448970438641612021 /* Pods-TTAnalyzeLoadTime_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TTAnalyzeLoadTime_Example.debug.xcconfig"; sourceTree = ""; }; 65 | /* End PBXFileReference section */ 66 | 67 | /* Begin PBXFrameworksBuildPhase section */ 68 | 8A4DC3B165A68676ADC824C6793BDB35 /* Frameworks */ = { 69 | isa = PBXFrameworksBuildPhase; 70 | buildActionMask = 2147483647; 71 | files = ( 72 | D177ADCC9B5FA620CF55B46A694085C9 /* Foundation.framework in Frameworks */, 73 | ); 74 | runOnlyForDeploymentPostprocessing = 0; 75 | }; 76 | 9F4FAC5468410C77C96A2294490B9F1C /* Frameworks */ = { 77 | isa = PBXFrameworksBuildPhase; 78 | buildActionMask = 2147483647; 79 | files = ( 80 | 4C1E0CAF5BAE5A0798A0DC5D5585BD4F /* Foundation.framework in Frameworks */, 81 | ); 82 | runOnlyForDeploymentPostprocessing = 0; 83 | }; 84 | DA63FA8071FBA8566382FE0CA2C31464 /* Frameworks */ = { 85 | isa = PBXFrameworksBuildPhase; 86 | buildActionMask = 2147483647; 87 | files = ( 88 | 8326B4A07EE00E9C2DE9A09A6ADCDBAA /* Foundation.framework in Frameworks */, 89 | ); 90 | runOnlyForDeploymentPostprocessing = 0; 91 | }; 92 | /* End PBXFrameworksBuildPhase section */ 93 | 94 | /* Begin PBXGroup section */ 95 | 070710961CD0F8F39DC95BB301ED1491 /* Products */ = { 96 | isa = PBXGroup; 97 | children = ( 98 | 05389251F75662298FDA1135CC971034 /* libPods-TTAnalyzeLoadTime_Example.a */, 99 | 68582836E913A44878F2CD495DFC3C31 /* libPods-TTAnalyzeLoadTime_Tests.a */, 100 | 3991D9999C40294EA36310D44C99CF4F /* libTTAnalyzeLoadTime.a */, 101 | ); 102 | name = Products; 103 | sourceTree = ""; 104 | }; 105 | 32309696026184D8FE619DE9A052F7A9 /* Targets Support Files */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 9B01D5D1D1006FAA7BA72591B5149A65 /* Pods-TTAnalyzeLoadTime_Example */, 109 | 504533E9A325CDA21E6A329A757142E1 /* Pods-TTAnalyzeLoadTime_Tests */, 110 | ); 111 | name = "Targets Support Files"; 112 | sourceTree = ""; 113 | }; 114 | 504533E9A325CDA21E6A329A757142E1 /* Pods-TTAnalyzeLoadTime_Tests */ = { 115 | isa = PBXGroup; 116 | children = ( 117 | FDA54B6C260C24767E6958101C6B4521 /* Pods-TTAnalyzeLoadTime_Tests-acknowledgements.markdown */, 118 | B6C98DF09CB86ED133D48AC12B7EAAFD /* Pods-TTAnalyzeLoadTime_Tests-acknowledgements.plist */, 119 | 1EB9443ECFCAFE2AA9777499BCF79177 /* Pods-TTAnalyzeLoadTime_Tests-dummy.m */, 120 | E47D9B182A3E823F4FD7609AB0185470 /* Pods-TTAnalyzeLoadTime_Tests-frameworks.sh */, 121 | 1924827A6050E57A0A0EEFFE28CC5E49 /* Pods-TTAnalyzeLoadTime_Tests-resources.sh */, 122 | C4D55A04E20FF2B51BAF9FFC9802CDBB /* Pods-TTAnalyzeLoadTime_Tests.debug.xcconfig */, 123 | 952BA393896FB142C0CBA93165709D50 /* Pods-TTAnalyzeLoadTime_Tests.release.xcconfig */, 124 | ); 125 | name = "Pods-TTAnalyzeLoadTime_Tests"; 126 | path = "Target Support Files/Pods-TTAnalyzeLoadTime_Tests"; 127 | sourceTree = ""; 128 | }; 129 | 53E1691CA8A3F1505983F973601F7AC0 /* Pod */ = { 130 | isa = PBXGroup; 131 | children = ( 132 | 0BB91DF5CF52FF05E5AF8C78530F2C57 /* LICENSE */, 133 | D0AF21679FFB93D3421444689C93B443 /* README.md */, 134 | C1FD07115F7DC7F7BAC7917BB2671351 /* TTAnalyzeLoadTime.podspec */, 135 | ); 136 | name = Pod; 137 | sourceTree = ""; 138 | }; 139 | 7DB346D0F39D3F0E887471402A8071AB = { 140 | isa = PBXGroup; 141 | children = ( 142 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 143 | B0CCEEFCA3AE993E9277F769A6133687 /* Development Pods */, 144 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 145 | 070710961CD0F8F39DC95BB301ED1491 /* Products */, 146 | 32309696026184D8FE619DE9A052F7A9 /* Targets Support Files */, 147 | ); 148 | sourceTree = ""; 149 | }; 150 | 9B01D5D1D1006FAA7BA72591B5149A65 /* Pods-TTAnalyzeLoadTime_Example */ = { 151 | isa = PBXGroup; 152 | children = ( 153 | 57CDAACA9ED21F83318DFF0966FD9D3F /* Pods-TTAnalyzeLoadTime_Example-acknowledgements.markdown */, 154 | F8F9A272138FE5137DDE1EF3D1E091BD /* Pods-TTAnalyzeLoadTime_Example-acknowledgements.plist */, 155 | ED8F8CAAC187ECFA0E180730CAEF37F9 /* Pods-TTAnalyzeLoadTime_Example-dummy.m */, 156 | 5FC0FC441319BC4781DB643986C3394A /* Pods-TTAnalyzeLoadTime_Example-frameworks.sh */, 157 | B5391AC47F7DA771BF3417817910D253 /* Pods-TTAnalyzeLoadTime_Example-resources.sh */, 158 | FF7524DF354F6C448970438641612021 /* Pods-TTAnalyzeLoadTime_Example.debug.xcconfig */, 159 | F0D193C84D027F8EB10DD500FAAB993A /* Pods-TTAnalyzeLoadTime_Example.release.xcconfig */, 160 | ); 161 | name = "Pods-TTAnalyzeLoadTime_Example"; 162 | path = "Target Support Files/Pods-TTAnalyzeLoadTime_Example"; 163 | sourceTree = ""; 164 | }; 165 | B0CCEEFCA3AE993E9277F769A6133687 /* Development Pods */ = { 166 | isa = PBXGroup; 167 | children = ( 168 | BA7601C0572FD3A20F3EFFB6E2BE1317 /* TTAnalyzeLoadTime */, 169 | ); 170 | name = "Development Pods"; 171 | sourceTree = ""; 172 | }; 173 | BA7601C0572FD3A20F3EFFB6E2BE1317 /* TTAnalyzeLoadTime */ = { 174 | isa = PBXGroup; 175 | children = ( 176 | 050D341D5F3C0FAD96B2BB9EF8E9BE4A /* PodLoadTime.h */, 177 | 93C3BB08D10F0BD99F938BC0A894B9BA /* PodLoadTime.m */, 178 | 53E1691CA8A3F1505983F973601F7AC0 /* Pod */, 179 | CBE56D41F6D2151473FC84316CF746F2 /* Support Files */, 180 | ); 181 | name = TTAnalyzeLoadTime; 182 | path = ../..; 183 | sourceTree = ""; 184 | }; 185 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 186 | isa = PBXGroup; 187 | children = ( 188 | D35AF013A5F0BAD4F32504907A52519E /* iOS */, 189 | ); 190 | name = Frameworks; 191 | sourceTree = ""; 192 | }; 193 | CBE56D41F6D2151473FC84316CF746F2 /* Support Files */ = { 194 | isa = PBXGroup; 195 | children = ( 196 | 624AC656794A2E3323718A3F285345C0 /* TTAnalyzeLoadTime.xcconfig */, 197 | 8E8EA1F414FD5E3C094B6B5E08E344AB /* TTAnalyzeLoadTime-dummy.m */, 198 | DF740A9005BAECF98BC679DB96C0FBA3 /* TTAnalyzeLoadTime-prefix.pch */, 199 | ); 200 | name = "Support Files"; 201 | path = "Example/Pods/Target Support Files/TTAnalyzeLoadTime"; 202 | sourceTree = ""; 203 | }; 204 | D35AF013A5F0BAD4F32504907A52519E /* iOS */ = { 205 | isa = PBXGroup; 206 | children = ( 207 | 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */, 208 | ); 209 | name = iOS; 210 | sourceTree = ""; 211 | }; 212 | /* End PBXGroup section */ 213 | 214 | /* Begin PBXHeadersBuildPhase section */ 215 | C1D717EA1685E9EA5249324DABDC4037 /* Headers */ = { 216 | isa = PBXHeadersBuildPhase; 217 | buildActionMask = 2147483647; 218 | files = ( 219 | 92D116758B52B593C93DB78C492541D8 /* PodLoadTime.h in Headers */, 220 | ); 221 | runOnlyForDeploymentPostprocessing = 0; 222 | }; 223 | /* End PBXHeadersBuildPhase section */ 224 | 225 | /* Begin PBXNativeTarget section */ 226 | 128D71E8A60F33F7C4201432668E02E2 /* Pods-TTAnalyzeLoadTime_Tests */ = { 227 | isa = PBXNativeTarget; 228 | buildConfigurationList = 4CEE715DA9B72BF7BD267DF595467B2B /* Build configuration list for PBXNativeTarget "Pods-TTAnalyzeLoadTime_Tests" */; 229 | buildPhases = ( 230 | 788A910252C3705BA1086A17EFDA24EA /* Sources */, 231 | 8A4DC3B165A68676ADC824C6793BDB35 /* Frameworks */, 232 | ); 233 | buildRules = ( 234 | ); 235 | dependencies = ( 236 | 533CB13102DF62F0C02F825DE8009A20 /* PBXTargetDependency */, 237 | ); 238 | name = "Pods-TTAnalyzeLoadTime_Tests"; 239 | productName = "Pods-TTAnalyzeLoadTime_Tests"; 240 | productReference = 68582836E913A44878F2CD495DFC3C31 /* libPods-TTAnalyzeLoadTime_Tests.a */; 241 | productType = "com.apple.product-type.library.static"; 242 | }; 243 | B2DCE37BB9D2C41D85D5C879A1B13742 /* TTAnalyzeLoadTime */ = { 244 | isa = PBXNativeTarget; 245 | buildConfigurationList = 232100D484B6C1AD30681690DDFFB38B /* Build configuration list for PBXNativeTarget "TTAnalyzeLoadTime" */; 246 | buildPhases = ( 247 | 67913398A42D0ECB3295542FB5B9EB08 /* Sources */, 248 | DA63FA8071FBA8566382FE0CA2C31464 /* Frameworks */, 249 | C1D717EA1685E9EA5249324DABDC4037 /* Headers */, 250 | ); 251 | buildRules = ( 252 | ); 253 | dependencies = ( 254 | ); 255 | name = TTAnalyzeLoadTime; 256 | productName = TTAnalyzeLoadTime; 257 | productReference = 3991D9999C40294EA36310D44C99CF4F /* libTTAnalyzeLoadTime.a */; 258 | productType = "com.apple.product-type.library.static"; 259 | }; 260 | D53C28AA8FE32C7916E4AC763262ED46 /* Pods-TTAnalyzeLoadTime_Example */ = { 261 | isa = PBXNativeTarget; 262 | buildConfigurationList = CBE3445CC1CC9323AEEC15F9D252EA64 /* Build configuration list for PBXNativeTarget "Pods-TTAnalyzeLoadTime_Example" */; 263 | buildPhases = ( 264 | 36C64F8C3C1EBDA02928627249D3BF80 /* Sources */, 265 | 9F4FAC5468410C77C96A2294490B9F1C /* Frameworks */, 266 | ); 267 | buildRules = ( 268 | ); 269 | dependencies = ( 270 | 79076FD6DD062A11F5C1581016754EA6 /* PBXTargetDependency */, 271 | ); 272 | name = "Pods-TTAnalyzeLoadTime_Example"; 273 | productName = "Pods-TTAnalyzeLoadTime_Example"; 274 | productReference = 05389251F75662298FDA1135CC971034 /* libPods-TTAnalyzeLoadTime_Example.a */; 275 | productType = "com.apple.product-type.library.static"; 276 | }; 277 | /* End PBXNativeTarget section */ 278 | 279 | /* Begin PBXProject section */ 280 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 281 | isa = PBXProject; 282 | attributes = { 283 | LastSwiftUpdateCheck = 0930; 284 | LastUpgradeCheck = 0930; 285 | }; 286 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 287 | compatibilityVersion = "Xcode 3.2"; 288 | developmentRegion = English; 289 | hasScannedForEncodings = 0; 290 | knownRegions = ( 291 | en, 292 | ); 293 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 294 | productRefGroup = 070710961CD0F8F39DC95BB301ED1491 /* Products */; 295 | projectDirPath = ""; 296 | projectRoot = ""; 297 | targets = ( 298 | D53C28AA8FE32C7916E4AC763262ED46 /* Pods-TTAnalyzeLoadTime_Example */, 299 | 128D71E8A60F33F7C4201432668E02E2 /* Pods-TTAnalyzeLoadTime_Tests */, 300 | B2DCE37BB9D2C41D85D5C879A1B13742 /* TTAnalyzeLoadTime */, 301 | ); 302 | }; 303 | /* End PBXProject section */ 304 | 305 | /* Begin PBXSourcesBuildPhase section */ 306 | 36C64F8C3C1EBDA02928627249D3BF80 /* Sources */ = { 307 | isa = PBXSourcesBuildPhase; 308 | buildActionMask = 2147483647; 309 | files = ( 310 | 923FFA4ECF25CD0AF801AC5FC9E01FB2 /* Pods-TTAnalyzeLoadTime_Example-dummy.m in Sources */, 311 | ); 312 | runOnlyForDeploymentPostprocessing = 0; 313 | }; 314 | 67913398A42D0ECB3295542FB5B9EB08 /* Sources */ = { 315 | isa = PBXSourcesBuildPhase; 316 | buildActionMask = 2147483647; 317 | files = ( 318 | 8DF8A7274B33E550E39522BA077CBA15 /* PodLoadTime.m in Sources */, 319 | 60D7D48ED5E2195AC7DD1ABE99DDE7C2 /* TTAnalyzeLoadTime-dummy.m in Sources */, 320 | ); 321 | runOnlyForDeploymentPostprocessing = 0; 322 | }; 323 | 788A910252C3705BA1086A17EFDA24EA /* Sources */ = { 324 | isa = PBXSourcesBuildPhase; 325 | buildActionMask = 2147483647; 326 | files = ( 327 | D3F18AC915D71F70364B4A368E9E860C /* Pods-TTAnalyzeLoadTime_Tests-dummy.m in Sources */, 328 | ); 329 | runOnlyForDeploymentPostprocessing = 0; 330 | }; 331 | /* End PBXSourcesBuildPhase section */ 332 | 333 | /* Begin PBXTargetDependency section */ 334 | 533CB13102DF62F0C02F825DE8009A20 /* PBXTargetDependency */ = { 335 | isa = PBXTargetDependency; 336 | name = "Pods-TTAnalyzeLoadTime_Example"; 337 | target = D53C28AA8FE32C7916E4AC763262ED46 /* Pods-TTAnalyzeLoadTime_Example */; 338 | targetProxy = 812682E9F22F63F5F9566CCA1FB7CB4D /* PBXContainerItemProxy */; 339 | }; 340 | 79076FD6DD062A11F5C1581016754EA6 /* PBXTargetDependency */ = { 341 | isa = PBXTargetDependency; 342 | name = TTAnalyzeLoadTime; 343 | target = B2DCE37BB9D2C41D85D5C879A1B13742 /* TTAnalyzeLoadTime */; 344 | targetProxy = 6F6D86431BB4F78D662AC878DD59C9E9 /* PBXContainerItemProxy */; 345 | }; 346 | /* End PBXTargetDependency section */ 347 | 348 | /* Begin XCBuildConfiguration section */ 349 | 1EE19F5DD95931924296F637BF18BD8F /* Debug */ = { 350 | isa = XCBuildConfiguration; 351 | buildSettings = { 352 | ALWAYS_SEARCH_USER_PATHS = NO; 353 | CLANG_ANALYZER_NONNULL = YES; 354 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 355 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 356 | CLANG_CXX_LIBRARY = "libc++"; 357 | CLANG_ENABLE_MODULES = YES; 358 | CLANG_ENABLE_OBJC_ARC = YES; 359 | CLANG_ENABLE_OBJC_WEAK = YES; 360 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 361 | CLANG_WARN_BOOL_CONVERSION = YES; 362 | CLANG_WARN_COMMA = YES; 363 | CLANG_WARN_CONSTANT_CONVERSION = YES; 364 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 365 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 366 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 367 | CLANG_WARN_EMPTY_BODY = YES; 368 | CLANG_WARN_ENUM_CONVERSION = YES; 369 | CLANG_WARN_INFINITE_RECURSION = YES; 370 | CLANG_WARN_INT_CONVERSION = YES; 371 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 372 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 373 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 374 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 375 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 376 | CLANG_WARN_STRICT_PROTOTYPES = YES; 377 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 378 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 379 | CLANG_WARN_UNREACHABLE_CODE = YES; 380 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 381 | CODE_SIGNING_ALLOWED = NO; 382 | CODE_SIGNING_REQUIRED = NO; 383 | COPY_PHASE_STRIP = NO; 384 | DEBUG_INFORMATION_FORMAT = dwarf; 385 | ENABLE_STRICT_OBJC_MSGSEND = YES; 386 | ENABLE_TESTABILITY = YES; 387 | GCC_C_LANGUAGE_STANDARD = gnu11; 388 | GCC_DYNAMIC_NO_PIC = NO; 389 | GCC_NO_COMMON_BLOCKS = YES; 390 | GCC_OPTIMIZATION_LEVEL = 0; 391 | GCC_PREPROCESSOR_DEFINITIONS = ( 392 | "POD_CONFIGURATION_DEBUG=1", 393 | "DEBUG=1", 394 | "$(inherited)", 395 | ); 396 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 397 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 398 | GCC_WARN_UNDECLARED_SELECTOR = YES; 399 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 400 | GCC_WARN_UNUSED_FUNCTION = YES; 401 | GCC_WARN_UNUSED_VARIABLE = YES; 402 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 403 | MTL_ENABLE_DEBUG_INFO = YES; 404 | ONLY_ACTIVE_ARCH = YES; 405 | PRODUCT_NAME = "$(TARGET_NAME)"; 406 | STRIP_INSTALLED_PRODUCT = NO; 407 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 408 | SYMROOT = "${SRCROOT}/../build"; 409 | }; 410 | name = Debug; 411 | }; 412 | 51409FFF85BA545D34C6969D0B79E4B5 /* Debug */ = { 413 | isa = XCBuildConfiguration; 414 | baseConfigurationReference = 624AC656794A2E3323718A3F285345C0 /* TTAnalyzeLoadTime.xcconfig */; 415 | buildSettings = { 416 | CODE_SIGN_IDENTITY = "iPhone Developer"; 417 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 418 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 419 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 420 | GCC_PREFIX_HEADER = "Target Support Files/TTAnalyzeLoadTime/TTAnalyzeLoadTime-prefix.pch"; 421 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 422 | OTHER_LDFLAGS = ""; 423 | OTHER_LIBTOOLFLAGS = ""; 424 | PRIVATE_HEADERS_FOLDER_PATH = ""; 425 | PRODUCT_MODULE_NAME = TTAnalyzeLoadTime; 426 | PRODUCT_NAME = TTAnalyzeLoadTime; 427 | PUBLIC_HEADERS_FOLDER_PATH = ""; 428 | SDKROOT = iphoneos; 429 | SKIP_INSTALL = YES; 430 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 431 | TARGETED_DEVICE_FAMILY = "1,2"; 432 | }; 433 | name = Debug; 434 | }; 435 | 7884DA4723D0D6D3B78FC5EDAD4B49EA /* Release */ = { 436 | isa = XCBuildConfiguration; 437 | baseConfigurationReference = F0D193C84D027F8EB10DD500FAAB993A /* Pods-TTAnalyzeLoadTime_Example.release.xcconfig */; 438 | buildSettings = { 439 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 440 | CODE_SIGN_IDENTITY = "iPhone Developer"; 441 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 442 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 443 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 444 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 445 | MACH_O_TYPE = staticlib; 446 | OTHER_LDFLAGS = ""; 447 | OTHER_LIBTOOLFLAGS = ""; 448 | PODS_ROOT = "$(SRCROOT)"; 449 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 450 | SDKROOT = iphoneos; 451 | SKIP_INSTALL = YES; 452 | TARGETED_DEVICE_FAMILY = "1,2"; 453 | VALIDATE_PRODUCT = YES; 454 | }; 455 | name = Release; 456 | }; 457 | 8FFA36A60E08F27B2472EA4E579425BF /* Release */ = { 458 | isa = XCBuildConfiguration; 459 | baseConfigurationReference = 952BA393896FB142C0CBA93165709D50 /* Pods-TTAnalyzeLoadTime_Tests.release.xcconfig */; 460 | buildSettings = { 461 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 462 | CODE_SIGN_IDENTITY = "iPhone Developer"; 463 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 464 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 465 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 466 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 467 | MACH_O_TYPE = staticlib; 468 | OTHER_LDFLAGS = ""; 469 | OTHER_LIBTOOLFLAGS = ""; 470 | PODS_ROOT = "$(SRCROOT)"; 471 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 472 | SDKROOT = iphoneos; 473 | SKIP_INSTALL = YES; 474 | TARGETED_DEVICE_FAMILY = "1,2"; 475 | VALIDATE_PRODUCT = YES; 476 | }; 477 | name = Release; 478 | }; 479 | 9DB4044A295FDDA7E61852874CF1CBB2 /* Release */ = { 480 | isa = XCBuildConfiguration; 481 | baseConfigurationReference = 624AC656794A2E3323718A3F285345C0 /* TTAnalyzeLoadTime.xcconfig */; 482 | buildSettings = { 483 | CODE_SIGN_IDENTITY = "iPhone Developer"; 484 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 485 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 486 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 487 | GCC_PREFIX_HEADER = "Target Support Files/TTAnalyzeLoadTime/TTAnalyzeLoadTime-prefix.pch"; 488 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 489 | OTHER_LDFLAGS = ""; 490 | OTHER_LIBTOOLFLAGS = ""; 491 | PRIVATE_HEADERS_FOLDER_PATH = ""; 492 | PRODUCT_MODULE_NAME = TTAnalyzeLoadTime; 493 | PRODUCT_NAME = TTAnalyzeLoadTime; 494 | PUBLIC_HEADERS_FOLDER_PATH = ""; 495 | SDKROOT = iphoneos; 496 | SKIP_INSTALL = YES; 497 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 498 | TARGETED_DEVICE_FAMILY = "1,2"; 499 | VALIDATE_PRODUCT = YES; 500 | }; 501 | name = Release; 502 | }; 503 | A1232B7CC0AD9700A79012D785134F2B /* Debug */ = { 504 | isa = XCBuildConfiguration; 505 | baseConfigurationReference = C4D55A04E20FF2B51BAF9FFC9802CDBB /* Pods-TTAnalyzeLoadTime_Tests.debug.xcconfig */; 506 | buildSettings = { 507 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 508 | CODE_SIGN_IDENTITY = "iPhone Developer"; 509 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 510 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 511 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 512 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 513 | MACH_O_TYPE = staticlib; 514 | OTHER_LDFLAGS = ""; 515 | OTHER_LIBTOOLFLAGS = ""; 516 | PODS_ROOT = "$(SRCROOT)"; 517 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 518 | SDKROOT = iphoneos; 519 | SKIP_INSTALL = YES; 520 | TARGETED_DEVICE_FAMILY = "1,2"; 521 | }; 522 | name = Debug; 523 | }; 524 | E175E37BAC2AD458EE1C1D9D03B60B39 /* Debug */ = { 525 | isa = XCBuildConfiguration; 526 | baseConfigurationReference = FF7524DF354F6C448970438641612021 /* Pods-TTAnalyzeLoadTime_Example.debug.xcconfig */; 527 | buildSettings = { 528 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 529 | CODE_SIGN_IDENTITY = "iPhone Developer"; 530 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 531 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 532 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 533 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 534 | MACH_O_TYPE = staticlib; 535 | OTHER_LDFLAGS = ""; 536 | OTHER_LIBTOOLFLAGS = ""; 537 | PODS_ROOT = "$(SRCROOT)"; 538 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 539 | SDKROOT = iphoneos; 540 | SKIP_INSTALL = YES; 541 | TARGETED_DEVICE_FAMILY = "1,2"; 542 | }; 543 | name = Debug; 544 | }; 545 | F4568DEE257655D290C2B9CEAB37C934 /* Release */ = { 546 | isa = XCBuildConfiguration; 547 | buildSettings = { 548 | ALWAYS_SEARCH_USER_PATHS = NO; 549 | CLANG_ANALYZER_NONNULL = YES; 550 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 551 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 552 | CLANG_CXX_LIBRARY = "libc++"; 553 | CLANG_ENABLE_MODULES = YES; 554 | CLANG_ENABLE_OBJC_ARC = YES; 555 | CLANG_ENABLE_OBJC_WEAK = YES; 556 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 557 | CLANG_WARN_BOOL_CONVERSION = YES; 558 | CLANG_WARN_COMMA = YES; 559 | CLANG_WARN_CONSTANT_CONVERSION = YES; 560 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 561 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 562 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 563 | CLANG_WARN_EMPTY_BODY = YES; 564 | CLANG_WARN_ENUM_CONVERSION = YES; 565 | CLANG_WARN_INFINITE_RECURSION = YES; 566 | CLANG_WARN_INT_CONVERSION = YES; 567 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 568 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 569 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 570 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 571 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 572 | CLANG_WARN_STRICT_PROTOTYPES = YES; 573 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 574 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 575 | CLANG_WARN_UNREACHABLE_CODE = YES; 576 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 577 | CODE_SIGNING_ALLOWED = NO; 578 | CODE_SIGNING_REQUIRED = NO; 579 | COPY_PHASE_STRIP = NO; 580 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 581 | ENABLE_NS_ASSERTIONS = NO; 582 | ENABLE_STRICT_OBJC_MSGSEND = YES; 583 | GCC_C_LANGUAGE_STANDARD = gnu11; 584 | GCC_NO_COMMON_BLOCKS = YES; 585 | GCC_PREPROCESSOR_DEFINITIONS = ( 586 | "POD_CONFIGURATION_RELEASE=1", 587 | "$(inherited)", 588 | ); 589 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 590 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 591 | GCC_WARN_UNDECLARED_SELECTOR = YES; 592 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 593 | GCC_WARN_UNUSED_FUNCTION = YES; 594 | GCC_WARN_UNUSED_VARIABLE = YES; 595 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 596 | MTL_ENABLE_DEBUG_INFO = NO; 597 | PRODUCT_NAME = "$(TARGET_NAME)"; 598 | STRIP_INSTALLED_PRODUCT = NO; 599 | SYMROOT = "${SRCROOT}/../build"; 600 | }; 601 | name = Release; 602 | }; 603 | /* End XCBuildConfiguration section */ 604 | 605 | /* Begin XCConfigurationList section */ 606 | 232100D484B6C1AD30681690DDFFB38B /* Build configuration list for PBXNativeTarget "TTAnalyzeLoadTime" */ = { 607 | isa = XCConfigurationList; 608 | buildConfigurations = ( 609 | 51409FFF85BA545D34C6969D0B79E4B5 /* Debug */, 610 | 9DB4044A295FDDA7E61852874CF1CBB2 /* Release */, 611 | ); 612 | defaultConfigurationIsVisible = 0; 613 | defaultConfigurationName = Release; 614 | }; 615 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 616 | isa = XCConfigurationList; 617 | buildConfigurations = ( 618 | 1EE19F5DD95931924296F637BF18BD8F /* Debug */, 619 | F4568DEE257655D290C2B9CEAB37C934 /* Release */, 620 | ); 621 | defaultConfigurationIsVisible = 0; 622 | defaultConfigurationName = Release; 623 | }; 624 | 4CEE715DA9B72BF7BD267DF595467B2B /* Build configuration list for PBXNativeTarget "Pods-TTAnalyzeLoadTime_Tests" */ = { 625 | isa = XCConfigurationList; 626 | buildConfigurations = ( 627 | A1232B7CC0AD9700A79012D785134F2B /* Debug */, 628 | 8FFA36A60E08F27B2472EA4E579425BF /* Release */, 629 | ); 630 | defaultConfigurationIsVisible = 0; 631 | defaultConfigurationName = Release; 632 | }; 633 | CBE3445CC1CC9323AEEC15F9D252EA64 /* Build configuration list for PBXNativeTarget "Pods-TTAnalyzeLoadTime_Example" */ = { 634 | isa = XCConfigurationList; 635 | buildConfigurations = ( 636 | E175E37BAC2AD458EE1C1D9D03B60B39 /* Debug */, 637 | 7884DA4723D0D6D3B78FC5EDAD4B49EA /* Release */, 638 | ); 639 | defaultConfigurationIsVisible = 0; 640 | defaultConfigurationName = Release; 641 | }; 642 | /* End XCConfigurationList section */ 643 | }; 644 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 645 | } 646 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Example/Pods-TTAnalyzeLoadTime_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## TTAnalyzeLoadTime 5 | 6 | Copyright (c) 2018 huakucha 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Example/Pods-TTAnalyzeLoadTime_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) 2018 huakucha <yuan1.liu@quvideo.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | TTAnalyzeLoadTime 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Example/Pods-TTAnalyzeLoadTime_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_TTAnalyzeLoadTime_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_TTAnalyzeLoadTime_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Example/Pods-TTAnalyzeLoadTime_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 7 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # frameworks to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 13 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 14 | 15 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 16 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 17 | 18 | # Used as a return value for each invocation of `strip_invalid_archs` function. 19 | STRIP_BINARY_RETVAL=0 20 | 21 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 22 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 23 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 24 | 25 | # Copies and strips a vendored framework 26 | install_framework() 27 | { 28 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 29 | local source="${BUILT_PRODUCTS_DIR}/$1" 30 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 31 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 32 | elif [ -r "$1" ]; then 33 | local source="$1" 34 | fi 35 | 36 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 37 | 38 | if [ -L "${source}" ]; then 39 | echo "Symlinked..." 40 | source="$(readlink "${source}")" 41 | fi 42 | 43 | # Use filter instead of exclude so missing patterns don't throw errors. 44 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 45 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 46 | 47 | local basename 48 | basename="$(basename -s .framework "$1")" 49 | binary="${destination}/${basename}.framework/${basename}" 50 | if ! [ -r "$binary" ]; then 51 | binary="${destination}/${basename}" 52 | fi 53 | 54 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 55 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 56 | strip_invalid_archs "$binary" 57 | fi 58 | 59 | # Resign the code if required by the build settings to avoid unstable apps 60 | code_sign_if_enabled "${destination}/$(basename "$1")" 61 | 62 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 63 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 64 | local swift_runtime_libs 65 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 66 | for lib in $swift_runtime_libs; do 67 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 68 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 69 | code_sign_if_enabled "${destination}/${lib}" 70 | done 71 | fi 72 | } 73 | 74 | # Copies and strips a vendored dSYM 75 | install_dsym() { 76 | local source="$1" 77 | if [ -r "$source" ]; then 78 | # Copy the dSYM into a the targets temp dir. 79 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 80 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 81 | 82 | local basename 83 | basename="$(basename -s .framework.dSYM "$source")" 84 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 85 | 86 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 87 | if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then 88 | strip_invalid_archs "$binary" 89 | fi 90 | 91 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 92 | # Move the stripped file into its final destination. 93 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 94 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 95 | else 96 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 97 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 98 | fi 99 | fi 100 | } 101 | 102 | # Signs a framework with the provided identity 103 | code_sign_if_enabled() { 104 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 105 | # Use the current code_sign_identitiy 106 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 107 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 108 | 109 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 110 | code_sign_cmd="$code_sign_cmd &" 111 | fi 112 | echo "$code_sign_cmd" 113 | eval "$code_sign_cmd" 114 | fi 115 | } 116 | 117 | # Strip invalid architectures 118 | strip_invalid_archs() { 119 | binary="$1" 120 | # Get architectures for current target binary 121 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 122 | # Intersect them with the architectures we are building for 123 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 124 | # If there are no archs supported by this binary then warn the user 125 | if [[ -z "$intersected_archs" ]]; then 126 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 127 | STRIP_BINARY_RETVAL=0 128 | return 129 | fi 130 | stripped="" 131 | for arch in $binary_archs; do 132 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 133 | # Strip non-valid architectures in-place 134 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 135 | stripped="$stripped $arch" 136 | fi 137 | done 138 | if [[ "$stripped" ]]; then 139 | echo "Stripped $binary of architectures:$stripped" 140 | fi 141 | STRIP_BINARY_RETVAL=1 142 | } 143 | 144 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 145 | wait 146 | fi 147 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Example/Pods-TTAnalyzeLoadTime_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then 7 | # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # resources to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 13 | 14 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 15 | > "$RESOURCES_TO_COPY" 16 | 17 | XCASSET_FILES=() 18 | 19 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 20 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 21 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 22 | 23 | case "${TARGETED_DEVICE_FAMILY:-}" in 24 | 1,2) 25 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 26 | ;; 27 | 1) 28 | TARGET_DEVICE_ARGS="--target-device iphone" 29 | ;; 30 | 2) 31 | TARGET_DEVICE_ARGS="--target-device ipad" 32 | ;; 33 | 3) 34 | TARGET_DEVICE_ARGS="--target-device tv" 35 | ;; 36 | 4) 37 | TARGET_DEVICE_ARGS="--target-device watch" 38 | ;; 39 | *) 40 | TARGET_DEVICE_ARGS="--target-device mac" 41 | ;; 42 | esac 43 | 44 | install_resource() 45 | { 46 | if [[ "$1" = /* ]] ; then 47 | RESOURCE_PATH="$1" 48 | else 49 | RESOURCE_PATH="${PODS_ROOT}/$1" 50 | fi 51 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 52 | cat << EOM 53 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 54 | EOM 55 | exit 1 56 | fi 57 | case $RESOURCE_PATH in 58 | *.storyboard) 59 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 60 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 61 | ;; 62 | *.xib) 63 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 64 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 65 | ;; 66 | *.framework) 67 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 68 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 69 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 70 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 71 | ;; 72 | *.xcdatamodel) 73 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 74 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 75 | ;; 76 | *.xcdatamodeld) 77 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 78 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 79 | ;; 80 | *.xcmappingmodel) 81 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 82 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 83 | ;; 84 | *.xcassets) 85 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 86 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 87 | ;; 88 | *) 89 | echo "$RESOURCE_PATH" || true 90 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 91 | ;; 92 | esac 93 | } 94 | 95 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 96 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 97 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 98 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 99 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 100 | fi 101 | rm -f "$RESOURCES_TO_COPY" 102 | 103 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] 104 | then 105 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 106 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 107 | while read line; do 108 | if [[ $line != "${PODS_ROOT}*" ]]; then 109 | XCASSET_FILES+=("$line") 110 | fi 111 | done <<<"$OTHER_XCASSETS" 112 | 113 | if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then 114 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 115 | else 116 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" 117 | fi 118 | fi 119 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Example/Pods-TTAnalyzeLoadTime_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_TTAnalyzeLoadTime_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_TTAnalyzeLoadTime_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Example/Pods-TTAnalyzeLoadTime_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/TTAnalyzeLoadTime" 3 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TTAnalyzeLoadTime" 4 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/TTAnalyzeLoadTime" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -l"TTAnalyzeLoadTime" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Example/Pods-TTAnalyzeLoadTime_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_TTAnalyzeLoadTime_Example { 2 | umbrella header "Pods-TTAnalyzeLoadTime_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Example/Pods-TTAnalyzeLoadTime_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/TTAnalyzeLoadTime" 3 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TTAnalyzeLoadTime" 4 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/TTAnalyzeLoadTime" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -l"TTAnalyzeLoadTime" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Tests/Pods-TTAnalyzeLoadTime_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Tests/Pods-TTAnalyzeLoadTime_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Tests/Pods-TTAnalyzeLoadTime_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_TTAnalyzeLoadTime_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_TTAnalyzeLoadTime_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Tests/Pods-TTAnalyzeLoadTime_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 7 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # frameworks to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 13 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 14 | 15 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 16 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 17 | 18 | # Used as a return value for each invocation of `strip_invalid_archs` function. 19 | STRIP_BINARY_RETVAL=0 20 | 21 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 22 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 23 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 24 | 25 | # Copies and strips a vendored framework 26 | install_framework() 27 | { 28 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 29 | local source="${BUILT_PRODUCTS_DIR}/$1" 30 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 31 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 32 | elif [ -r "$1" ]; then 33 | local source="$1" 34 | fi 35 | 36 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 37 | 38 | if [ -L "${source}" ]; then 39 | echo "Symlinked..." 40 | source="$(readlink "${source}")" 41 | fi 42 | 43 | # Use filter instead of exclude so missing patterns don't throw errors. 44 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 45 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 46 | 47 | local basename 48 | basename="$(basename -s .framework "$1")" 49 | binary="${destination}/${basename}.framework/${basename}" 50 | if ! [ -r "$binary" ]; then 51 | binary="${destination}/${basename}" 52 | fi 53 | 54 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 55 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 56 | strip_invalid_archs "$binary" 57 | fi 58 | 59 | # Resign the code if required by the build settings to avoid unstable apps 60 | code_sign_if_enabled "${destination}/$(basename "$1")" 61 | 62 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 63 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 64 | local swift_runtime_libs 65 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 66 | for lib in $swift_runtime_libs; do 67 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 68 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 69 | code_sign_if_enabled "${destination}/${lib}" 70 | done 71 | fi 72 | } 73 | 74 | # Copies and strips a vendored dSYM 75 | install_dsym() { 76 | local source="$1" 77 | if [ -r "$source" ]; then 78 | # Copy the dSYM into a the targets temp dir. 79 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 80 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 81 | 82 | local basename 83 | basename="$(basename -s .framework.dSYM "$source")" 84 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 85 | 86 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 87 | if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then 88 | strip_invalid_archs "$binary" 89 | fi 90 | 91 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 92 | # Move the stripped file into its final destination. 93 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 94 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 95 | else 96 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 97 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 98 | fi 99 | fi 100 | } 101 | 102 | # Signs a framework with the provided identity 103 | code_sign_if_enabled() { 104 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 105 | # Use the current code_sign_identitiy 106 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 107 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 108 | 109 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 110 | code_sign_cmd="$code_sign_cmd &" 111 | fi 112 | echo "$code_sign_cmd" 113 | eval "$code_sign_cmd" 114 | fi 115 | } 116 | 117 | # Strip invalid architectures 118 | strip_invalid_archs() { 119 | binary="$1" 120 | # Get architectures for current target binary 121 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 122 | # Intersect them with the architectures we are building for 123 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 124 | # If there are no archs supported by this binary then warn the user 125 | if [[ -z "$intersected_archs" ]]; then 126 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 127 | STRIP_BINARY_RETVAL=0 128 | return 129 | fi 130 | stripped="" 131 | for arch in $binary_archs; do 132 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 133 | # Strip non-valid architectures in-place 134 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 135 | stripped="$stripped $arch" 136 | fi 137 | done 138 | if [[ "$stripped" ]]; then 139 | echo "Stripped $binary of architectures:$stripped" 140 | fi 141 | STRIP_BINARY_RETVAL=1 142 | } 143 | 144 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 145 | wait 146 | fi 147 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Tests/Pods-TTAnalyzeLoadTime_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then 7 | # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # resources to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 13 | 14 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 15 | > "$RESOURCES_TO_COPY" 16 | 17 | XCASSET_FILES=() 18 | 19 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 20 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 21 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 22 | 23 | case "${TARGETED_DEVICE_FAMILY:-}" in 24 | 1,2) 25 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 26 | ;; 27 | 1) 28 | TARGET_DEVICE_ARGS="--target-device iphone" 29 | ;; 30 | 2) 31 | TARGET_DEVICE_ARGS="--target-device ipad" 32 | ;; 33 | 3) 34 | TARGET_DEVICE_ARGS="--target-device tv" 35 | ;; 36 | 4) 37 | TARGET_DEVICE_ARGS="--target-device watch" 38 | ;; 39 | *) 40 | TARGET_DEVICE_ARGS="--target-device mac" 41 | ;; 42 | esac 43 | 44 | install_resource() 45 | { 46 | if [[ "$1" = /* ]] ; then 47 | RESOURCE_PATH="$1" 48 | else 49 | RESOURCE_PATH="${PODS_ROOT}/$1" 50 | fi 51 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 52 | cat << EOM 53 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 54 | EOM 55 | exit 1 56 | fi 57 | case $RESOURCE_PATH in 58 | *.storyboard) 59 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 60 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 61 | ;; 62 | *.xib) 63 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 64 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 65 | ;; 66 | *.framework) 67 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 68 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 69 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 70 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 71 | ;; 72 | *.xcdatamodel) 73 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 74 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 75 | ;; 76 | *.xcdatamodeld) 77 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 78 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 79 | ;; 80 | *.xcmappingmodel) 81 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 82 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 83 | ;; 84 | *.xcassets) 85 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 86 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 87 | ;; 88 | *) 89 | echo "$RESOURCE_PATH" || true 90 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 91 | ;; 92 | esac 93 | } 94 | 95 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 96 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 97 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 98 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 99 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 100 | fi 101 | rm -f "$RESOURCES_TO_COPY" 102 | 103 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] 104 | then 105 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 106 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 107 | while read line; do 108 | if [[ $line != "${PODS_ROOT}*" ]]; then 109 | XCASSET_FILES+=("$line") 110 | fi 111 | done <<<"$OTHER_XCASSETS" 112 | 113 | if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then 114 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 115 | else 116 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" 117 | fi 118 | fi 119 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Tests/Pods-TTAnalyzeLoadTime_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_TTAnalyzeLoadTime_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_TTAnalyzeLoadTime_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Tests/Pods-TTAnalyzeLoadTime_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/TTAnalyzeLoadTime" 3 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TTAnalyzeLoadTime" 4 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/TTAnalyzeLoadTime" 5 | OTHER_LDFLAGS = $(inherited) -ObjC 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Tests/Pods-TTAnalyzeLoadTime_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_TTAnalyzeLoadTime_Tests { 2 | umbrella header "Pods-TTAnalyzeLoadTime_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Tests/Pods-TTAnalyzeLoadTime_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/TTAnalyzeLoadTime" 3 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TTAnalyzeLoadTime" 4 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/TTAnalyzeLoadTime" 5 | OTHER_LDFLAGS = $(inherited) -ObjC 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TTAnalyzeLoadTime/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TTAnalyzeLoadTime/TTAnalyzeLoadTime-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_TTAnalyzeLoadTime : NSObject 3 | @end 4 | @implementation PodsDummy_TTAnalyzeLoadTime 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TTAnalyzeLoadTime/TTAnalyzeLoadTime-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TTAnalyzeLoadTime/TTAnalyzeLoadTime-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "PodLoadTime.h" 14 | 15 | FOUNDATION_EXPORT double TTAnalyzeLoadTimeVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char TTAnalyzeLoadTimeVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TTAnalyzeLoadTime/TTAnalyzeLoadTime.modulemap: -------------------------------------------------------------------------------- 1 | framework module TTAnalyzeLoadTime { 2 | umbrella header "TTAnalyzeLoadTime-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TTAnalyzeLoadTime/TTAnalyzeLoadTime.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/TTAnalyzeLoadTime 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/TTAnalyzeLoadTime" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/TTAnalyzeLoadTime" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0494794A21C35DB4006B24BA /* TTLoadTime.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0494794321C35DB4006B24BA /* TTLoadTime.framework */; }; 11 | 0494794B21C35DB4006B24BA /* TTLoadTime.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 0494794321C35DB4006B24BA /* TTLoadTime.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 12 | 0494795121C35E0A006B24BA /* TTLoadTime.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0494795021C35E0A006B24BA /* TTLoadTime.mm */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; }; 13 | 0494795321C35E6B006B24BA /* libc++.1.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 0494795221C35E6B006B24BA /* libc++.1.tbd */; }; 14 | 0494795421C35E72006B24BA /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 15 | 0494795621C35E7D006B24BA /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0494795521C35E7D006B24BA /* QuartzCore.framework */; }; 16 | 0494795721C35E83006B24BA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 17 | 0494795A21C35ECB006B24BA /* TTViewController+LoadTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0494795921C35ECB006B24BA /* TTViewController+LoadTimer.m */; }; 18 | 0494795F21C36031006B24BA /* libc++.1.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 0494795221C35E6B006B24BA /* libc++.1.tbd */; }; 19 | 04FC6DD021C3607F00420A82 /* TTLoadTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 04FC6DCF21C3607F00420A82 /* TTLoadTime.h */; settings = {ATTRIBUTES = (Public, ); }; }; 20 | 522BF3CBABBFFEBCC4C072C9 /* libPods-TTAnalyzeLoadTime_Tests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4AEF00FBA985011BB24697F4 /* libPods-TTAnalyzeLoadTime_Tests.a */; }; 21 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 22 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 23 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 24 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 25 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 26 | 6003F59E195388D20070C39A /* TTAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* TTAppDelegate.m */; }; 27 | 6003F5A7195388D20070C39A /* TTViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* TTViewController.m */; }; 28 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 29 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; 30 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 31 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 32 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; 33 | 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; 34 | 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */; }; 35 | 818C488D303A5F5F2AEBAD89 /* libPods-TTAnalyzeLoadTime_Example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 024C79B123DB603B9A1DF144 /* libPods-TTAnalyzeLoadTime_Example.a */; }; 36 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; }; 37 | /* End PBXBuildFile section */ 38 | 39 | /* Begin PBXContainerItemProxy section */ 40 | 0494794821C35DB4006B24BA /* PBXContainerItemProxy */ = { 41 | isa = PBXContainerItemProxy; 42 | containerPortal = 6003F582195388D10070C39A /* Project object */; 43 | proxyType = 1; 44 | remoteGlobalIDString = 0494794221C35DB4006B24BA; 45 | remoteInfo = TTLoadTime; 46 | }; 47 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { 48 | isa = PBXContainerItemProxy; 49 | containerPortal = 6003F582195388D10070C39A /* Project object */; 50 | proxyType = 1; 51 | remoteGlobalIDString = 6003F589195388D20070C39A; 52 | remoteInfo = TTAnalyzeLoadTime; 53 | }; 54 | /* End PBXContainerItemProxy section */ 55 | 56 | /* Begin PBXCopyFilesBuildPhase section */ 57 | 0494794F21C35DB5006B24BA /* Embed Frameworks */ = { 58 | isa = PBXCopyFilesBuildPhase; 59 | buildActionMask = 2147483647; 60 | dstPath = ""; 61 | dstSubfolderSpec = 10; 62 | files = ( 63 | 0494794B21C35DB4006B24BA /* TTLoadTime.framework in Embed Frameworks */, 64 | ); 65 | name = "Embed Frameworks"; 66 | runOnlyForDeploymentPostprocessing = 0; 67 | }; 68 | /* End PBXCopyFilesBuildPhase section */ 69 | 70 | /* Begin PBXFileReference section */ 71 | 024C79B123DB603B9A1DF144 /* libPods-TTAnalyzeLoadTime_Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-TTAnalyzeLoadTime_Example.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 72 | 0494794321C35DB4006B24BA /* TTLoadTime.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TTLoadTime.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 73 | 0494794621C35DB4006B24BA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 74 | 0494795021C35E0A006B24BA /* TTLoadTime.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TTLoadTime.mm; sourceTree = ""; }; 75 | 0494795221C35E6B006B24BA /* libc++.1.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.1.tbd"; path = "usr/lib/libc++.1.tbd"; sourceTree = SDKROOT; }; 76 | 0494795521C35E7D006B24BA /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; 77 | 0494795821C35ECB006B24BA /* TTViewController+LoadTimer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TTViewController+LoadTimer.h"; sourceTree = ""; }; 78 | 0494795921C35ECB006B24BA /* TTViewController+LoadTimer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "TTViewController+LoadTimer.m"; sourceTree = ""; }; 79 | 04FC6DCF21C3607F00420A82 /* TTLoadTime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TTLoadTime.h; sourceTree = ""; }; 80 | 0842922E99D635E728547A19 /* Pods-TTAnalyzeLoadTime_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TTAnalyzeLoadTime_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Example/Pods-TTAnalyzeLoadTime_Example.release.xcconfig"; sourceTree = ""; }; 81 | 4AEF00FBA985011BB24697F4 /* libPods-TTAnalyzeLoadTime_Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-TTAnalyzeLoadTime_Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 82 | 5712AD6D48A81EBAA26F9F51 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 83 | 6003F58A195388D20070C39A /* TTAnalyzeLoadTime_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TTAnalyzeLoadTime_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 84 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 85 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 86 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 87 | 6003F595195388D20070C39A /* TTAnalyzeLoadTime-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TTAnalyzeLoadTime-Info.plist"; sourceTree = ""; }; 88 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 89 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 90 | 6003F59B195388D20070C39A /* TTAnalyzeLoadTime-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TTAnalyzeLoadTime-Prefix.pch"; sourceTree = ""; }; 91 | 6003F59C195388D20070C39A /* TTAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TTAppDelegate.h; sourceTree = ""; }; 92 | 6003F59D195388D20070C39A /* TTAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TTAppDelegate.m; sourceTree = ""; }; 93 | 6003F5A5195388D20070C39A /* TTViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TTViewController.h; sourceTree = ""; }; 94 | 6003F5A6195388D20070C39A /* TTViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TTViewController.m; sourceTree = ""; }; 95 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 96 | 6003F5AE195388D20070C39A /* TTAnalyzeLoadTime_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TTAnalyzeLoadTime_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 97 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 98 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 99 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 100 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 101 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 102 | 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 103 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 104 | B55F4A5B0CAC122CFC6DCB8A /* TTAnalyzeLoadTime.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = TTAnalyzeLoadTime.podspec; path = ../TTAnalyzeLoadTime.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 105 | BCA015C286B3CD2F03912C68 /* Pods-TTAnalyzeLoadTime_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TTAnalyzeLoadTime_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Tests/Pods-TTAnalyzeLoadTime_Tests.debug.xcconfig"; sourceTree = ""; }; 106 | D2C092D998179FBC2581D9BB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 107 | E3473AFBE81158F5E2E3FCEC /* Pods-TTAnalyzeLoadTime_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TTAnalyzeLoadTime_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Example/Pods-TTAnalyzeLoadTime_Example.debug.xcconfig"; sourceTree = ""; }; 108 | E6A16F24F68CFF0E5EF120E8 /* Pods-TTAnalyzeLoadTime_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TTAnalyzeLoadTime_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-TTAnalyzeLoadTime_Tests/Pods-TTAnalyzeLoadTime_Tests.release.xcconfig"; sourceTree = ""; }; 109 | /* End PBXFileReference section */ 110 | 111 | /* Begin PBXFrameworksBuildPhase section */ 112 | 0494794021C35DB4006B24BA /* Frameworks */ = { 113 | isa = PBXFrameworksBuildPhase; 114 | buildActionMask = 2147483647; 115 | files = ( 116 | 0494795721C35E83006B24BA /* Foundation.framework in Frameworks */, 117 | 0494795621C35E7D006B24BA /* QuartzCore.framework in Frameworks */, 118 | 0494795421C35E72006B24BA /* UIKit.framework in Frameworks */, 119 | 0494795321C35E6B006B24BA /* libc++.1.tbd in Frameworks */, 120 | ); 121 | runOnlyForDeploymentPostprocessing = 0; 122 | }; 123 | 6003F587195388D20070C39A /* Frameworks */ = { 124 | isa = PBXFrameworksBuildPhase; 125 | buildActionMask = 2147483647; 126 | files = ( 127 | 0494795F21C36031006B24BA /* libc++.1.tbd in Frameworks */, 128 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 129 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 130 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 131 | 0494794A21C35DB4006B24BA /* TTLoadTime.framework in Frameworks */, 132 | 818C488D303A5F5F2AEBAD89 /* libPods-TTAnalyzeLoadTime_Example.a in Frameworks */, 133 | ); 134 | runOnlyForDeploymentPostprocessing = 0; 135 | }; 136 | 6003F5AB195388D20070C39A /* Frameworks */ = { 137 | isa = PBXFrameworksBuildPhase; 138 | buildActionMask = 2147483647; 139 | files = ( 140 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 141 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 142 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 143 | 522BF3CBABBFFEBCC4C072C9 /* libPods-TTAnalyzeLoadTime_Tests.a in Frameworks */, 144 | ); 145 | runOnlyForDeploymentPostprocessing = 0; 146 | }; 147 | /* End PBXFrameworksBuildPhase section */ 148 | 149 | /* Begin PBXGroup section */ 150 | 0494794421C35DB4006B24BA /* TTLoadTime */ = { 151 | isa = PBXGroup; 152 | children = ( 153 | 04FC6DCF21C3607F00420A82 /* TTLoadTime.h */, 154 | 0494795021C35E0A006B24BA /* TTLoadTime.mm */, 155 | 0494794621C35DB4006B24BA /* Info.plist */, 156 | ); 157 | path = TTLoadTime; 158 | sourceTree = ""; 159 | }; 160 | 6003F581195388D10070C39A = { 161 | isa = PBXGroup; 162 | children = ( 163 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 164 | 6003F593195388D20070C39A /* Example for TTAnalyzeLoadTime */, 165 | 6003F5B5195388D20070C39A /* Tests */, 166 | 0494794421C35DB4006B24BA /* TTLoadTime */, 167 | 6003F58C195388D20070C39A /* Frameworks */, 168 | 6003F58B195388D20070C39A /* Products */, 169 | 8CB7CBFE9259F81F136A324B /* Pods */, 170 | ); 171 | sourceTree = ""; 172 | }; 173 | 6003F58B195388D20070C39A /* Products */ = { 174 | isa = PBXGroup; 175 | children = ( 176 | 6003F58A195388D20070C39A /* TTAnalyzeLoadTime_Example.app */, 177 | 6003F5AE195388D20070C39A /* TTAnalyzeLoadTime_Tests.xctest */, 178 | 0494794321C35DB4006B24BA /* TTLoadTime.framework */, 179 | ); 180 | name = Products; 181 | sourceTree = ""; 182 | }; 183 | 6003F58C195388D20070C39A /* Frameworks */ = { 184 | isa = PBXGroup; 185 | children = ( 186 | 0494795521C35E7D006B24BA /* QuartzCore.framework */, 187 | 0494795221C35E6B006B24BA /* libc++.1.tbd */, 188 | 6003F58D195388D20070C39A /* Foundation.framework */, 189 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 190 | 6003F591195388D20070C39A /* UIKit.framework */, 191 | 6003F5AF195388D20070C39A /* XCTest.framework */, 192 | 024C79B123DB603B9A1DF144 /* libPods-TTAnalyzeLoadTime_Example.a */, 193 | 4AEF00FBA985011BB24697F4 /* libPods-TTAnalyzeLoadTime_Tests.a */, 194 | ); 195 | name = Frameworks; 196 | sourceTree = ""; 197 | }; 198 | 6003F593195388D20070C39A /* Example for TTAnalyzeLoadTime */ = { 199 | isa = PBXGroup; 200 | children = ( 201 | 6003F59C195388D20070C39A /* TTAppDelegate.h */, 202 | 6003F59D195388D20070C39A /* TTAppDelegate.m */, 203 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */, 204 | 6003F5A5195388D20070C39A /* TTViewController.h */, 205 | 6003F5A6195388D20070C39A /* TTViewController.m */, 206 | 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */, 207 | 6003F5A8195388D20070C39A /* Images.xcassets */, 208 | 6003F594195388D20070C39A /* Supporting Files */, 209 | 0494795821C35ECB006B24BA /* TTViewController+LoadTimer.h */, 210 | 0494795921C35ECB006B24BA /* TTViewController+LoadTimer.m */, 211 | ); 212 | name = "Example for TTAnalyzeLoadTime"; 213 | path = TTAnalyzeLoadTime; 214 | sourceTree = ""; 215 | }; 216 | 6003F594195388D20070C39A /* Supporting Files */ = { 217 | isa = PBXGroup; 218 | children = ( 219 | 6003F595195388D20070C39A /* TTAnalyzeLoadTime-Info.plist */, 220 | 6003F596195388D20070C39A /* InfoPlist.strings */, 221 | 6003F599195388D20070C39A /* main.m */, 222 | 6003F59B195388D20070C39A /* TTAnalyzeLoadTime-Prefix.pch */, 223 | ); 224 | name = "Supporting Files"; 225 | sourceTree = ""; 226 | }; 227 | 6003F5B5195388D20070C39A /* Tests */ = { 228 | isa = PBXGroup; 229 | children = ( 230 | 6003F5BB195388D20070C39A /* Tests.m */, 231 | 6003F5B6195388D20070C39A /* Supporting Files */, 232 | ); 233 | path = Tests; 234 | sourceTree = ""; 235 | }; 236 | 6003F5B6195388D20070C39A /* Supporting Files */ = { 237 | isa = PBXGroup; 238 | children = ( 239 | 6003F5B7195388D20070C39A /* Tests-Info.plist */, 240 | 6003F5B8195388D20070C39A /* InfoPlist.strings */, 241 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, 242 | ); 243 | name = "Supporting Files"; 244 | sourceTree = ""; 245 | }; 246 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 247 | isa = PBXGroup; 248 | children = ( 249 | B55F4A5B0CAC122CFC6DCB8A /* TTAnalyzeLoadTime.podspec */, 250 | D2C092D998179FBC2581D9BB /* README.md */, 251 | 5712AD6D48A81EBAA26F9F51 /* LICENSE */, 252 | ); 253 | name = "Podspec Metadata"; 254 | sourceTree = ""; 255 | }; 256 | 8CB7CBFE9259F81F136A324B /* Pods */ = { 257 | isa = PBXGroup; 258 | children = ( 259 | E3473AFBE81158F5E2E3FCEC /* Pods-TTAnalyzeLoadTime_Example.debug.xcconfig */, 260 | 0842922E99D635E728547A19 /* Pods-TTAnalyzeLoadTime_Example.release.xcconfig */, 261 | BCA015C286B3CD2F03912C68 /* Pods-TTAnalyzeLoadTime_Tests.debug.xcconfig */, 262 | E6A16F24F68CFF0E5EF120E8 /* Pods-TTAnalyzeLoadTime_Tests.release.xcconfig */, 263 | ); 264 | name = Pods; 265 | sourceTree = ""; 266 | }; 267 | /* End PBXGroup section */ 268 | 269 | /* Begin PBXHeadersBuildPhase section */ 270 | 0494793E21C35DB4006B24BA /* Headers */ = { 271 | isa = PBXHeadersBuildPhase; 272 | buildActionMask = 2147483647; 273 | files = ( 274 | 04FC6DD021C3607F00420A82 /* TTLoadTime.h in Headers */, 275 | ); 276 | runOnlyForDeploymentPostprocessing = 0; 277 | }; 278 | /* End PBXHeadersBuildPhase section */ 279 | 280 | /* Begin PBXNativeTarget section */ 281 | 0494794221C35DB4006B24BA /* TTLoadTime */ = { 282 | isa = PBXNativeTarget; 283 | buildConfigurationList = 0494794E21C35DB5006B24BA /* Build configuration list for PBXNativeTarget "TTLoadTime" */; 284 | buildPhases = ( 285 | 0494793E21C35DB4006B24BA /* Headers */, 286 | 0494793F21C35DB4006B24BA /* Sources */, 287 | 0494794021C35DB4006B24BA /* Frameworks */, 288 | 0494794121C35DB4006B24BA /* Resources */, 289 | ); 290 | buildRules = ( 291 | ); 292 | dependencies = ( 293 | ); 294 | name = TTLoadTime; 295 | productName = TTLoadTime; 296 | productReference = 0494794321C35DB4006B24BA /* TTLoadTime.framework */; 297 | productType = "com.apple.product-type.framework"; 298 | }; 299 | 6003F589195388D20070C39A /* TTAnalyzeLoadTime_Example */ = { 300 | isa = PBXNativeTarget; 301 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "TTAnalyzeLoadTime_Example" */; 302 | buildPhases = ( 303 | 93E6E323D65728336E243DB5 /* [CP] Check Pods Manifest.lock */, 304 | 6003F586195388D20070C39A /* Sources */, 305 | 6003F587195388D20070C39A /* Frameworks */, 306 | 6003F588195388D20070C39A /* Resources */, 307 | 0494794F21C35DB5006B24BA /* Embed Frameworks */, 308 | ); 309 | buildRules = ( 310 | ); 311 | dependencies = ( 312 | 0494794921C35DB4006B24BA /* PBXTargetDependency */, 313 | ); 314 | name = TTAnalyzeLoadTime_Example; 315 | productName = TTAnalyzeLoadTime; 316 | productReference = 6003F58A195388D20070C39A /* TTAnalyzeLoadTime_Example.app */; 317 | productType = "com.apple.product-type.application"; 318 | }; 319 | 6003F5AD195388D20070C39A /* TTAnalyzeLoadTime_Tests */ = { 320 | isa = PBXNativeTarget; 321 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "TTAnalyzeLoadTime_Tests" */; 322 | buildPhases = ( 323 | 92821A9B9672833FAF320727 /* [CP] Check Pods Manifest.lock */, 324 | 6003F5AA195388D20070C39A /* Sources */, 325 | 6003F5AB195388D20070C39A /* Frameworks */, 326 | 6003F5AC195388D20070C39A /* Resources */, 327 | ); 328 | buildRules = ( 329 | ); 330 | dependencies = ( 331 | 6003F5B4195388D20070C39A /* PBXTargetDependency */, 332 | ); 333 | name = TTAnalyzeLoadTime_Tests; 334 | productName = TTAnalyzeLoadTimeTests; 335 | productReference = 6003F5AE195388D20070C39A /* TTAnalyzeLoadTime_Tests.xctest */; 336 | productType = "com.apple.product-type.bundle.unit-test"; 337 | }; 338 | /* End PBXNativeTarget section */ 339 | 340 | /* Begin PBXProject section */ 341 | 6003F582195388D10070C39A /* Project object */ = { 342 | isa = PBXProject; 343 | attributes = { 344 | CLASSPREFIX = TT; 345 | LastUpgradeCheck = 0720; 346 | ORGANIZATIONNAME = huakucha; 347 | TargetAttributes = { 348 | 0494794221C35DB4006B24BA = { 349 | CreatedOnToolsVersion = 10.1; 350 | ProvisioningStyle = Automatic; 351 | }; 352 | 6003F589195388D20070C39A = { 353 | DevelopmentTeam = BMP99N9345; 354 | }; 355 | 6003F5AD195388D20070C39A = { 356 | TestTargetID = 6003F589195388D20070C39A; 357 | }; 358 | }; 359 | }; 360 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "TTAnalyzeLoadTime" */; 361 | compatibilityVersion = "Xcode 3.2"; 362 | developmentRegion = English; 363 | hasScannedForEncodings = 0; 364 | knownRegions = ( 365 | en, 366 | Base, 367 | ); 368 | mainGroup = 6003F581195388D10070C39A; 369 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 370 | projectDirPath = ""; 371 | projectRoot = ""; 372 | targets = ( 373 | 6003F589195388D20070C39A /* TTAnalyzeLoadTime_Example */, 374 | 6003F5AD195388D20070C39A /* TTAnalyzeLoadTime_Tests */, 375 | 0494794221C35DB4006B24BA /* TTLoadTime */, 376 | ); 377 | }; 378 | /* End PBXProject section */ 379 | 380 | /* Begin PBXResourcesBuildPhase section */ 381 | 0494794121C35DB4006B24BA /* Resources */ = { 382 | isa = PBXResourcesBuildPhase; 383 | buildActionMask = 2147483647; 384 | files = ( 385 | ); 386 | runOnlyForDeploymentPostprocessing = 0; 387 | }; 388 | 6003F588195388D20070C39A /* Resources */ = { 389 | isa = PBXResourcesBuildPhase; 390 | buildActionMask = 2147483647; 391 | files = ( 392 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */, 393 | 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */, 394 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 395 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 396 | ); 397 | runOnlyForDeploymentPostprocessing = 0; 398 | }; 399 | 6003F5AC195388D20070C39A /* Resources */ = { 400 | isa = PBXResourcesBuildPhase; 401 | buildActionMask = 2147483647; 402 | files = ( 403 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, 404 | ); 405 | runOnlyForDeploymentPostprocessing = 0; 406 | }; 407 | /* End PBXResourcesBuildPhase section */ 408 | 409 | /* Begin PBXShellScriptBuildPhase section */ 410 | 92821A9B9672833FAF320727 /* [CP] Check Pods Manifest.lock */ = { 411 | isa = PBXShellScriptBuildPhase; 412 | buildActionMask = 2147483647; 413 | files = ( 414 | ); 415 | inputPaths = ( 416 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 417 | "${PODS_ROOT}/Manifest.lock", 418 | ); 419 | name = "[CP] Check Pods Manifest.lock"; 420 | outputPaths = ( 421 | "$(DERIVED_FILE_DIR)/Pods-TTAnalyzeLoadTime_Tests-checkManifestLockResult.txt", 422 | ); 423 | runOnlyForDeploymentPostprocessing = 0; 424 | shellPath = /bin/sh; 425 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 426 | showEnvVarsInLog = 0; 427 | }; 428 | 93E6E323D65728336E243DB5 /* [CP] Check Pods Manifest.lock */ = { 429 | isa = PBXShellScriptBuildPhase; 430 | buildActionMask = 2147483647; 431 | files = ( 432 | ); 433 | inputPaths = ( 434 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 435 | "${PODS_ROOT}/Manifest.lock", 436 | ); 437 | name = "[CP] Check Pods Manifest.lock"; 438 | outputPaths = ( 439 | "$(DERIVED_FILE_DIR)/Pods-TTAnalyzeLoadTime_Example-checkManifestLockResult.txt", 440 | ); 441 | runOnlyForDeploymentPostprocessing = 0; 442 | shellPath = /bin/sh; 443 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 444 | showEnvVarsInLog = 0; 445 | }; 446 | /* End PBXShellScriptBuildPhase section */ 447 | 448 | /* Begin PBXSourcesBuildPhase section */ 449 | 0494793F21C35DB4006B24BA /* Sources */ = { 450 | isa = PBXSourcesBuildPhase; 451 | buildActionMask = 2147483647; 452 | files = ( 453 | 0494795121C35E0A006B24BA /* TTLoadTime.mm in Sources */, 454 | ); 455 | runOnlyForDeploymentPostprocessing = 0; 456 | }; 457 | 6003F586195388D20070C39A /* Sources */ = { 458 | isa = PBXSourcesBuildPhase; 459 | buildActionMask = 2147483647; 460 | files = ( 461 | 6003F59E195388D20070C39A /* TTAppDelegate.m in Sources */, 462 | 6003F5A7195388D20070C39A /* TTViewController.m in Sources */, 463 | 0494795A21C35ECB006B24BA /* TTViewController+LoadTimer.m in Sources */, 464 | 6003F59A195388D20070C39A /* main.m in Sources */, 465 | ); 466 | runOnlyForDeploymentPostprocessing = 0; 467 | }; 468 | 6003F5AA195388D20070C39A /* Sources */ = { 469 | isa = PBXSourcesBuildPhase; 470 | buildActionMask = 2147483647; 471 | files = ( 472 | 6003F5BC195388D20070C39A /* Tests.m in Sources */, 473 | ); 474 | runOnlyForDeploymentPostprocessing = 0; 475 | }; 476 | /* End PBXSourcesBuildPhase section */ 477 | 478 | /* Begin PBXTargetDependency section */ 479 | 0494794921C35DB4006B24BA /* PBXTargetDependency */ = { 480 | isa = PBXTargetDependency; 481 | target = 0494794221C35DB4006B24BA /* TTLoadTime */; 482 | targetProxy = 0494794821C35DB4006B24BA /* PBXContainerItemProxy */; 483 | }; 484 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { 485 | isa = PBXTargetDependency; 486 | target = 6003F589195388D20070C39A /* TTAnalyzeLoadTime_Example */; 487 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; 488 | }; 489 | /* End PBXTargetDependency section */ 490 | 491 | /* Begin PBXVariantGroup section */ 492 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 493 | isa = PBXVariantGroup; 494 | children = ( 495 | 6003F597195388D20070C39A /* en */, 496 | ); 497 | name = InfoPlist.strings; 498 | sourceTree = ""; 499 | }; 500 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { 501 | isa = PBXVariantGroup; 502 | children = ( 503 | 6003F5B9195388D20070C39A /* en */, 504 | ); 505 | name = InfoPlist.strings; 506 | sourceTree = ""; 507 | }; 508 | 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */ = { 509 | isa = PBXVariantGroup; 510 | children = ( 511 | 71719F9E1E33DC2100824A3D /* Base */, 512 | ); 513 | name = LaunchScreen.storyboard; 514 | sourceTree = ""; 515 | }; 516 | /* End PBXVariantGroup section */ 517 | 518 | /* Begin XCBuildConfiguration section */ 519 | 0494794C21C35DB5006B24BA /* Debug */ = { 520 | isa = XCBuildConfiguration; 521 | buildSettings = { 522 | CLANG_ANALYZER_NONNULL = YES; 523 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 524 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 525 | CLANG_ENABLE_OBJC_WEAK = YES; 526 | CLANG_LINK_OBJC_RUNTIME = NO; 527 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 528 | CLANG_WARN_COMMA = YES; 529 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 530 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 531 | CLANG_WARN_INFINITE_RECURSION = YES; 532 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 533 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 534 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 535 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 536 | CLANG_WARN_STRICT_PROTOTYPES = YES; 537 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 538 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 539 | CLANG_WARN_UNREACHABLE_CODE = YES; 540 | CODE_SIGN_IDENTITY = "iPhone Developer"; 541 | CODE_SIGN_STYLE = Automatic; 542 | CURRENT_PROJECT_VERSION = 1; 543 | DEBUG_INFORMATION_FORMAT = dwarf; 544 | DEFINES_MODULE = YES; 545 | DYLIB_COMPATIBILITY_VERSION = 1; 546 | DYLIB_CURRENT_VERSION = 1; 547 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 548 | ENABLE_STRICT_OBJC_MSGSEND = YES; 549 | GCC_C_LANGUAGE_STANDARD = gnu11; 550 | GCC_NO_COMMON_BLOCKS = YES; 551 | INFOPLIST_FILE = TTLoadTime/Info.plist; 552 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 553 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 554 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 555 | MACH_O_TYPE = mh_dylib; 556 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 557 | MTL_FAST_MATH = YES; 558 | PRODUCT_BUNDLE_IDENTIFIER = com.huakucha.TTLoadTime; 559 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 560 | SKIP_INSTALL = YES; 561 | TARGETED_DEVICE_FAMILY = "1,2"; 562 | VERSIONING_SYSTEM = "apple-generic"; 563 | VERSION_INFO_PREFIX = ""; 564 | }; 565 | name = Debug; 566 | }; 567 | 0494794D21C35DB5006B24BA /* Release */ = { 568 | isa = XCBuildConfiguration; 569 | buildSettings = { 570 | CLANG_ANALYZER_NONNULL = YES; 571 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 572 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 573 | CLANG_ENABLE_OBJC_WEAK = YES; 574 | CLANG_LINK_OBJC_RUNTIME = NO; 575 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 576 | CLANG_WARN_COMMA = YES; 577 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 578 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 579 | CLANG_WARN_INFINITE_RECURSION = YES; 580 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 581 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 582 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 583 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 584 | CLANG_WARN_STRICT_PROTOTYPES = YES; 585 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 586 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 587 | CLANG_WARN_UNREACHABLE_CODE = YES; 588 | CODE_SIGN_IDENTITY = "iPhone Developer"; 589 | CODE_SIGN_STYLE = Automatic; 590 | COPY_PHASE_STRIP = NO; 591 | CURRENT_PROJECT_VERSION = 1; 592 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 593 | DEFINES_MODULE = YES; 594 | DYLIB_COMPATIBILITY_VERSION = 1; 595 | DYLIB_CURRENT_VERSION = 1; 596 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 597 | ENABLE_STRICT_OBJC_MSGSEND = YES; 598 | GCC_C_LANGUAGE_STANDARD = gnu11; 599 | GCC_NO_COMMON_BLOCKS = YES; 600 | INFOPLIST_FILE = TTLoadTime/Info.plist; 601 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 602 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 603 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 604 | MACH_O_TYPE = mh_dylib; 605 | MTL_ENABLE_DEBUG_INFO = NO; 606 | MTL_FAST_MATH = YES; 607 | PRODUCT_BUNDLE_IDENTIFIER = com.huakucha.TTLoadTime; 608 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 609 | SKIP_INSTALL = YES; 610 | TARGETED_DEVICE_FAMILY = "1,2"; 611 | VERSIONING_SYSTEM = "apple-generic"; 612 | VERSION_INFO_PREFIX = ""; 613 | }; 614 | name = Release; 615 | }; 616 | 6003F5BD195388D20070C39A /* Debug */ = { 617 | isa = XCBuildConfiguration; 618 | buildSettings = { 619 | ALWAYS_SEARCH_USER_PATHS = NO; 620 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 621 | CLANG_CXX_LIBRARY = "libc++"; 622 | CLANG_ENABLE_MODULES = YES; 623 | CLANG_ENABLE_OBJC_ARC = YES; 624 | CLANG_LINK_OBJC_RUNTIME = NO; 625 | CLANG_WARN_BOOL_CONVERSION = YES; 626 | CLANG_WARN_CONSTANT_CONVERSION = YES; 627 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 628 | CLANG_WARN_EMPTY_BODY = YES; 629 | CLANG_WARN_ENUM_CONVERSION = YES; 630 | CLANG_WARN_INT_CONVERSION = YES; 631 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 632 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 633 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 634 | COPY_PHASE_STRIP = NO; 635 | ENABLE_TESTABILITY = YES; 636 | GCC_C_LANGUAGE_STANDARD = gnu99; 637 | GCC_DYNAMIC_NO_PIC = NO; 638 | GCC_OPTIMIZATION_LEVEL = 0; 639 | GCC_PREPROCESSOR_DEFINITIONS = ( 640 | "DEBUG=1", 641 | "$(inherited)", 642 | ); 643 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 644 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 645 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 646 | GCC_WARN_UNDECLARED_SELECTOR = YES; 647 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 648 | GCC_WARN_UNUSED_FUNCTION = YES; 649 | GCC_WARN_UNUSED_VARIABLE = YES; 650 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 651 | ONLY_ACTIVE_ARCH = YES; 652 | SDKROOT = iphoneos; 653 | TARGETED_DEVICE_FAMILY = "1,2"; 654 | }; 655 | name = Debug; 656 | }; 657 | 6003F5BE195388D20070C39A /* Release */ = { 658 | isa = XCBuildConfiguration; 659 | buildSettings = { 660 | ALWAYS_SEARCH_USER_PATHS = NO; 661 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 662 | CLANG_CXX_LIBRARY = "libc++"; 663 | CLANG_ENABLE_MODULES = YES; 664 | CLANG_ENABLE_OBJC_ARC = YES; 665 | CLANG_LINK_OBJC_RUNTIME = NO; 666 | CLANG_WARN_BOOL_CONVERSION = YES; 667 | CLANG_WARN_CONSTANT_CONVERSION = YES; 668 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 669 | CLANG_WARN_EMPTY_BODY = YES; 670 | CLANG_WARN_ENUM_CONVERSION = YES; 671 | CLANG_WARN_INT_CONVERSION = YES; 672 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 673 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 674 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 675 | COPY_PHASE_STRIP = YES; 676 | ENABLE_NS_ASSERTIONS = NO; 677 | GCC_C_LANGUAGE_STANDARD = gnu99; 678 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 679 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 680 | GCC_WARN_UNDECLARED_SELECTOR = YES; 681 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 682 | GCC_WARN_UNUSED_FUNCTION = YES; 683 | GCC_WARN_UNUSED_VARIABLE = YES; 684 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 685 | SDKROOT = iphoneos; 686 | TARGETED_DEVICE_FAMILY = "1,2"; 687 | VALIDATE_PRODUCT = YES; 688 | }; 689 | name = Release; 690 | }; 691 | 6003F5C0195388D20070C39A /* Debug */ = { 692 | isa = XCBuildConfiguration; 693 | baseConfigurationReference = E3473AFBE81158F5E2E3FCEC /* Pods-TTAnalyzeLoadTime_Example.debug.xcconfig */; 694 | buildSettings = { 695 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 696 | CLANG_LINK_OBJC_RUNTIME = NO; 697 | CODE_SIGN_IDENTITY = "iPhone Developer"; 698 | DEVELOPMENT_TEAM = BMP99N9345; 699 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 700 | GCC_PREFIX_HEADER = "TTAnalyzeLoadTime/TTAnalyzeLoadTime-Prefix.pch"; 701 | INFOPLIST_FILE = "TTAnalyzeLoadTime/TTAnalyzeLoadTime-Info.plist"; 702 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 703 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 704 | MODULE_NAME = ExampleApp; 705 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 706 | PRODUCT_NAME = "$(TARGET_NAME)"; 707 | WRAPPER_EXTENSION = app; 708 | }; 709 | name = Debug; 710 | }; 711 | 6003F5C1195388D20070C39A /* Release */ = { 712 | isa = XCBuildConfiguration; 713 | baseConfigurationReference = 0842922E99D635E728547A19 /* Pods-TTAnalyzeLoadTime_Example.release.xcconfig */; 714 | buildSettings = { 715 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 716 | CLANG_LINK_OBJC_RUNTIME = NO; 717 | CODE_SIGN_IDENTITY = "iPhone Developer"; 718 | DEVELOPMENT_TEAM = BMP99N9345; 719 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 720 | GCC_PREFIX_HEADER = "TTAnalyzeLoadTime/TTAnalyzeLoadTime-Prefix.pch"; 721 | INFOPLIST_FILE = "TTAnalyzeLoadTime/TTAnalyzeLoadTime-Info.plist"; 722 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 723 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 724 | MODULE_NAME = ExampleApp; 725 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 726 | PRODUCT_NAME = "$(TARGET_NAME)"; 727 | WRAPPER_EXTENSION = app; 728 | }; 729 | name = Release; 730 | }; 731 | 6003F5C3195388D20070C39A /* Debug */ = { 732 | isa = XCBuildConfiguration; 733 | baseConfigurationReference = BCA015C286B3CD2F03912C68 /* Pods-TTAnalyzeLoadTime_Tests.debug.xcconfig */; 734 | buildSettings = { 735 | BUNDLE_LOADER = "$(TEST_HOST)"; 736 | FRAMEWORK_SEARCH_PATHS = ( 737 | "$(SDKROOT)/Developer/Library/Frameworks", 738 | "$(inherited)", 739 | "$(DEVELOPER_FRAMEWORKS_DIR)", 740 | ); 741 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 742 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 743 | GCC_PREPROCESSOR_DEFINITIONS = ( 744 | "DEBUG=1", 745 | "$(inherited)", 746 | ); 747 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 748 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 749 | PRODUCT_NAME = "$(TARGET_NAME)"; 750 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TTAnalyzeLoadTime_Example.app/TTAnalyzeLoadTime_Example"; 751 | WRAPPER_EXTENSION = xctest; 752 | }; 753 | name = Debug; 754 | }; 755 | 6003F5C4195388D20070C39A /* Release */ = { 756 | isa = XCBuildConfiguration; 757 | baseConfigurationReference = E6A16F24F68CFF0E5EF120E8 /* Pods-TTAnalyzeLoadTime_Tests.release.xcconfig */; 758 | buildSettings = { 759 | BUNDLE_LOADER = "$(TEST_HOST)"; 760 | FRAMEWORK_SEARCH_PATHS = ( 761 | "$(SDKROOT)/Developer/Library/Frameworks", 762 | "$(inherited)", 763 | "$(DEVELOPER_FRAMEWORKS_DIR)", 764 | ); 765 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 766 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 767 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 768 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 769 | PRODUCT_NAME = "$(TARGET_NAME)"; 770 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TTAnalyzeLoadTime_Example.app/TTAnalyzeLoadTime_Example"; 771 | WRAPPER_EXTENSION = xctest; 772 | }; 773 | name = Release; 774 | }; 775 | /* End XCBuildConfiguration section */ 776 | 777 | /* Begin XCConfigurationList section */ 778 | 0494794E21C35DB5006B24BA /* Build configuration list for PBXNativeTarget "TTLoadTime" */ = { 779 | isa = XCConfigurationList; 780 | buildConfigurations = ( 781 | 0494794C21C35DB5006B24BA /* Debug */, 782 | 0494794D21C35DB5006B24BA /* Release */, 783 | ); 784 | defaultConfigurationIsVisible = 0; 785 | defaultConfigurationName = Release; 786 | }; 787 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "TTAnalyzeLoadTime" */ = { 788 | isa = XCConfigurationList; 789 | buildConfigurations = ( 790 | 6003F5BD195388D20070C39A /* Debug */, 791 | 6003F5BE195388D20070C39A /* Release */, 792 | ); 793 | defaultConfigurationIsVisible = 0; 794 | defaultConfigurationName = Release; 795 | }; 796 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "TTAnalyzeLoadTime_Example" */ = { 797 | isa = XCConfigurationList; 798 | buildConfigurations = ( 799 | 6003F5C0195388D20070C39A /* Debug */, 800 | 6003F5C1195388D20070C39A /* Release */, 801 | ); 802 | defaultConfigurationIsVisible = 0; 803 | defaultConfigurationName = Release; 804 | }; 805 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "TTAnalyzeLoadTime_Tests" */ = { 806 | isa = XCConfigurationList; 807 | buildConfigurations = ( 808 | 6003F5C3195388D20070C39A /* Debug */, 809 | 6003F5C4195388D20070C39A /* Release */, 810 | ); 811 | defaultConfigurationIsVisible = 0; 812 | defaultConfigurationName = Release; 813 | }; 814 | /* End XCConfigurationList section */ 815 | }; 816 | rootObject = 6003F582195388D10070C39A /* Project object */; 817 | } 818 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime.xcodeproj/xcshareddata/xcschemes/TTAnalyzeLoadTime-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 | 53 | 54 | 64 | 66 | 72 | 73 | 74 | 75 | 76 | 77 | 83 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime.xcodeproj/xcshareddata/xcschemes/TTLoadTime.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 34 | 35 | 45 | 46 | 52 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 70 | 71 | 72 | 73 | 75 | 76 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "20x20", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "20x20", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "29x29", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "29x29", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "40x40", 66 | "scale" : "1x" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "size" : "40x40", 71 | "scale" : "2x" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "size" : "76x76", 76 | "scale" : "1x" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "size" : "76x76", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "idiom" : "ipad", 85 | "size" : "83.5x83.5", 86 | "scale" : "2x" 87 | }, 88 | { 89 | "idiom" : "ios-marketing", 90 | "size" : "1024x1024", 91 | "scale" : "1x" 92 | } 93 | ], 94 | "info" : { 95 | "version" : 1, 96 | "author" : "xcode" 97 | } 98 | } 99 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime/TTAnalyzeLoadTime-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 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 | LaunchScreen 29 | UIMainStoryboardFile 30 | Main 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UISupportedInterfaceOrientations~ipad 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationPortraitUpsideDown 45 | UIInterfaceOrientationLandscapeLeft 46 | UIInterfaceOrientationLandscapeRight 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime/TTAnalyzeLoadTime-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/TTAnalyzeLoadTime/TTAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // TTAppDelegate.h 3 | // TTAnalyzeLoadTime 4 | // 5 | // Created by huakucha on 12/14/2018. 6 | // Copyright (c) 2018 huakucha. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface TTAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime/TTAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // TTAppDelegate.m 3 | // TTAnalyzeLoadTime 4 | // 5 | // Created by huakucha on 12/14/2018. 6 | // Copyright (c) 2018 huakucha. All rights reserved. 7 | // 8 | 9 | #import "TTAppDelegate.h" 10 | 11 | @implementation TTAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | - (void)applicationWillResignActive:(UIApplication *)application 20 | { 21 | // 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. 22 | // 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. 23 | } 24 | 25 | - (void)applicationDidEnterBackground:(UIApplication *)application 26 | { 27 | // 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. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | - (void)applicationWillEnterForeground:(UIApplication *)application 32 | { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | - (void)applicationDidBecomeActive:(UIApplication *)application 37 | { 38 | // 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. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application 42 | { 43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime/TTViewController+LoadTimer.h: -------------------------------------------------------------------------------- 1 | // 2 | // TTViewController+LoadTimer.h 3 | // TTAnalyzeLoadTime_Example 4 | // 5 | // Created by huakucha on 2018/12/14. 6 | // Copyright © 2018 huakucha. All rights reserved. 7 | // 8 | 9 | #import "TTViewController.h" 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @interface TTViewController (LoadTimer) 14 | 15 | @end 16 | 17 | NS_ASSUME_NONNULL_END 18 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime/TTViewController+LoadTimer.m: -------------------------------------------------------------------------------- 1 | // 2 | // TTViewController+LoadTimer.m 3 | // TTAnalyzeLoadTime_Example 4 | // 5 | // Created by huakucha on 2018/12/14. 6 | // Copyright © 2018 huakucha. All rights reserved. 7 | // 8 | 9 | #import "TTViewController+LoadTimer.h" 10 | 11 | @implementation TTViewController (LoadTimer) 12 | 13 | +(void)load 14 | { 15 | NSLog(@"TTViewController (LoadTimer) load"); 16 | } 17 | 18 | @end 19 | 20 | 21 | @interface TTViewController (PPLoadTimer) 22 | 23 | @end 24 | 25 | @implementation TTViewController (PPLoadTimer) 26 | 27 | +(void)load 28 | { 29 | NSLog(@"TTViewController (PPLoadTimer) load"); 30 | } 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime/TTViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // TTViewController.h 3 | // TTAnalyzeLoadTime 4 | // 5 | // Created by huakucha on 12/14/2018. 6 | // Copyright (c) 2018 huakucha. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface TTViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime/TTViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // TTViewController.m 3 | // TTAnalyzeLoadTime 4 | // 5 | // Created by huakucha on 12/14/2018. 6 | // Copyright (c) 2018 huakucha. All rights reserved. 7 | // 8 | 9 | #import "TTViewController.h" 10 | #import "TTLoadTime.h" 11 | 12 | #import 13 | #import 14 | 15 | @interface TTViewController () 16 | 17 | @end 18 | 19 | @implementation TTViewController 20 | 21 | +(void)load 22 | { 23 | NSLog(@"TTViewController load"); 24 | } 25 | 26 | + (void)initialize 27 | { 28 | NSLog(@""); 29 | } 30 | 31 | - (void)viewDidLoad 32 | { 33 | [super viewDidLoad]; 34 | printLoadCostsInfo(); 35 | } 36 | 37 | - (void)didReceiveMemoryWarning 38 | { 39 | [super didReceiveMemoryWarning]; 40 | // Dispose of any resources that can be recreated. 41 | } 42 | 43 | @end 44 | 45 | @interface TTDemo:NSObject 46 | 47 | @end 48 | 49 | @implementation TTDemo 50 | 51 | +(void)load 52 | { 53 | NSLog(@"TTDemo load"); 54 | } 55 | 56 | @end 57 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/TTAnalyzeLoadTime/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TTAnalyzeLoadTime 4 | // 5 | // Created by huakucha on 12/14/2018. 6 | // Copyright (c) 2018 huakucha. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | #import "TTAppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) 13 | { 14 | @autoreleasepool { 15 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([TTAppDelegate class])); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Example/TTLoadTime/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | 22 | 23 | -------------------------------------------------------------------------------- /Example/TTLoadTime/TTLoadTime.h: -------------------------------------------------------------------------------- 1 | // 2 | // TTLoadTime.h 3 | // TTLoadTime 4 | // 5 | // Created by huakucha on 2018/12/13. 6 | // 7 | 8 | #import 9 | #import 10 | 11 | FOUNDATION_EXPORT void printLoadCostsInfo(); 12 | 13 | //! Project version number for LoadTime. 14 | FOUNDATION_EXPORT double LoadTimeVersionNumber; 15 | 16 | //! Project version string for LoadTime. 17 | FOUNDATION_EXPORT const unsigned char LoadTimeVersionString[]; 18 | 19 | -------------------------------------------------------------------------------- /Example/TTLoadTime/TTLoadTime.mm: -------------------------------------------------------------------------------- 1 | // 2 | // TTLoadTime.m 3 | // TTLoadTime 4 | // 5 | // Created by huakucha on 2018/12/13. 6 | // 7 | 8 | #import "TTLoadTime.h" 9 | #import 10 | #import 11 | #import 12 | #import 13 | #include 14 | #include 15 | #include 16 | #include 17 | 18 | 19 | @interface TTLoadTime : NSObject 20 | @end 21 | 22 | @implementation TTLoadTime 23 | 24 | #pragma mark -- C++ method list template 25 | template 26 | struct entsize_list_tt { 27 | uint32_t entsizeAndFlags; 28 | uint32_t count; 29 | Element first; 30 | 31 | uint32_t entsize() const { 32 | return entsizeAndFlags & ~FlagMask; 33 | } 34 | uint32_t flags() const { 35 | return entsizeAndFlags & FlagMask; 36 | } 37 | 38 | Element& getOrEnd(uint32_t i) const { 39 | assert(i <= count); 40 | return *(Element *)((uint8_t *)&first + i*entsize()); 41 | } 42 | Element& get(uint32_t i) const { 43 | assert(i < count); 44 | return getOrEnd(i); 45 | } 46 | 47 | size_t byteSize() const { 48 | return sizeof(*this) + (count-1)*entsize(); 49 | } 50 | 51 | List *duplicate() const { 52 | return (List *)memdup(this, this->byteSize()); 53 | } 54 | 55 | struct iterator; 56 | const iterator begin() const { 57 | return iterator(*static_cast(this), 0); 58 | } 59 | iterator begin() { 60 | return iterator(*static_cast(this), 0); 61 | } 62 | const iterator end() const { 63 | return iterator(*static_cast(this), count); 64 | } 65 | iterator end() { 66 | return iterator(*static_cast(this), count); 67 | } 68 | 69 | struct iterator { 70 | uint32_t entsize; 71 | uint32_t index; // keeping track of this saves a divide in operator- 72 | Element* element; 73 | 74 | typedef std::random_access_iterator_tag iterator_category; 75 | typedef Element value_type; 76 | typedef ptrdiff_t difference_type; 77 | typedef Element* pointer; 78 | typedef Element& reference; 79 | 80 | iterator() { } 81 | 82 | iterator(const List& list, uint32_t start = 0) 83 | : entsize(list.entsize()) 84 | , index(start) 85 | , element(&list.getOrEnd(start)) 86 | { } 87 | 88 | const iterator& operator += (ptrdiff_t delta) { 89 | element = (Element*)((uint8_t *)element + delta*entsize); 90 | index += (int32_t)delta; 91 | return *this; 92 | } 93 | const iterator& operator -= (ptrdiff_t delta) { 94 | element = (Element*)((uint8_t *)element - delta*entsize); 95 | index -= (int32_t)delta; 96 | return *this; 97 | } 98 | const iterator operator + (ptrdiff_t delta) const { 99 | return iterator(*this) += delta; 100 | } 101 | const iterator operator - (ptrdiff_t delta) const { 102 | return iterator(*this) -= delta; 103 | } 104 | 105 | iterator& operator ++ () { *this += 1; return *this; } 106 | iterator& operator -- () { *this -= 1; return *this; } 107 | iterator operator ++ (int) { 108 | iterator result(*this); *this += 1; return result; 109 | } 110 | iterator operator -- (int) { 111 | iterator result(*this); *this -= 1; return result; 112 | } 113 | 114 | ptrdiff_t operator - (const iterator& rhs) const { 115 | return (ptrdiff_t)this->index - (ptrdiff_t)rhs.index; 116 | } 117 | 118 | Element& operator * () const { return *element; } 119 | Element* operator -> () const { return element; } 120 | 121 | operator Element& () const { return *element; } 122 | 123 | bool operator == (const iterator& rhs) const { 124 | return this->element == rhs.element; 125 | } 126 | bool operator != (const iterator& rhs) const { 127 | return this->element != rhs.element; 128 | } 129 | 130 | bool operator < (const iterator& rhs) const { 131 | return this->element < rhs.element; 132 | } 133 | bool operator > (const iterator& rhs) const { 134 | return this->element > rhs.element; 135 | } 136 | }; 137 | }; 138 | 139 | 140 | struct method_t { 141 | SEL name; 142 | const char *types; 143 | IMP imp; 144 | 145 | struct SortBySELAddress : 146 | public std::binary_function 148 | { 149 | bool operator() (const method_t& lhs, 150 | const method_t& rhs) 151 | { return lhs.name < rhs.name; } 152 | }; 153 | }; 154 | 155 | struct method_list_t : entsize_list_tt { 156 | }; 157 | 158 | #pragma mark -- runtime typedef 159 | typedef struct classref * classref_t; 160 | //typedef struct mach_header_64 headerType; 161 | 162 | 163 | #ifndef __LP64__ 164 | typedef struct mach_header headerType; 165 | #else 166 | typedef struct mach_header_64 headerType; 167 | #endif 168 | 169 | 170 | struct category_t { 171 | const char *name; 172 | classref_t cls; 173 | void *instanceMethods; 174 | struct method_list_t *classMethods; 175 | void *protocols; 176 | void *instanceProperties; 177 | void *_classProperties; 178 | void *methodsForMeta(bool isMeta) { 179 | if (isMeta) return classMethods; 180 | else return instanceMethods; 181 | } 182 | void *propertiesForMeta(bool isMeta, struct header_info *hi); 183 | }; 184 | 185 | #define GETSECT(name, type, sectname) \ 186 | type *name(const headerType *mhdr, size_t *outCount) { \ 187 | return getDataSection(mhdr, sectname, nil, outCount); \ 188 | } \ 189 | 190 | GETSECT(_getObjc2NonlazyClassList, classref_t, "__objc_nlclslist"); 191 | GETSECT(_getObjc2NonlazyCategoryList, category_t *, "__objc_nlcatlist"); 192 | 193 | template 194 | T* getDataSection(const headerType *mhdr, const char *sectname, size_t *outBytes, size_t *outCount) { 195 | unsigned long byteCount = 0; 196 | 197 | 198 | T* data = (T*)getsectiondata(mhdr, "__DATA", sectname, &byteCount); 199 | if (!data) { 200 | data = (T*)getsectiondata(mhdr, "__DATA_CONST", sectname, &byteCount); 201 | } 202 | if (!data) { 203 | data = (T*)getsectiondata(mhdr, "__DATA_DIRTY", sectname, &byteCount); 204 | } 205 | 206 | //#ifndef __LP64__ 207 | // 208 | // 209 | //#else 210 | // const struct mach_header_64 *mhp64 = (const struct mach_header_64 *)mhdr; 211 | // 212 | // 213 | // T* data = (T*)getsectiondata(mhp64, "__DATA", sectname, &byteCount); 214 | // if (!data) { 215 | // data = (T*)getsectiondata(mhp64, "__DATA_CONST", sectname, &byteCount); 216 | // } 217 | // if (!data) { 218 | // data = (T*)getsectiondata(mhp64, "__DATA_DIRTY", sectname, &byteCount); 219 | // } 220 | // 221 | //#endif 222 | 223 | 224 | if (outBytes) *outBytes = byteCount; 225 | if (outCount) *outCount = byteCount / sizeof(T); 226 | return data; 227 | } 228 | 229 | #pragma mark -- static var define 230 | 231 | //static NSMutableDictionary *g_loadcosts; 232 | static NSMutableArray *g_loadcosts; 233 | 234 | static NSMutableDictionary *loadMS;//To record the name of category 235 | static NSMutableDictionary *loadCS;//To void repeat analysis same class 236 | 237 | extern "C"{ 238 | category_t **nlcategarylist; 239 | size_t categaryCount; 240 | } 241 | 242 | #define LoadRulerBegin \ 243 | NSLog(@">>>> before");\ 244 | CFTimeInterval begin = CACurrentMediaTime(); 245 | 246 | #define LoadRulerEnd \ 247 | CFTimeInterval end = CACurrentMediaTime();\ 248 | if(!g_loadcosts){\ 249 | g_loadcosts = [[NSMutableArray alloc]initWithCapacity:10];\ 250 | }\ 251 | [g_loadcosts addObject:[NSString stringWithFormat:@"%@ - %@ms",NSStringFromClass([self class]), @(1000 * (end - begin))]];\ 252 | NSLog(@"<<<< after");a 253 | 254 | // a IMP that returns a value 255 | typedef id (* _IMP) (id, SEL, ...); 256 | // no return value 257 | typedef void (* _VIMP) (id, SEL, ...); 258 | 259 | #pragma mark -- static func define 260 | const struct mach_header *get_target_image_header() { 261 | 262 | const uint32_t imageCount = _dyld_image_count(); 263 | const struct mach_header* target_image_header = 0; 264 | 265 | for(uint32_t iImg = 0; iImg < imageCount; iImg++) { 266 | const char *image_name = _dyld_get_image_name(iImg); 267 | const char *target_image_name = ((NSString *)[[NSBundle mainBundle] objectForInfoDictionaryKey:(NSString*)kCFBundleExecutableKey]).UTF8String; 268 | 269 | if (strstr(image_name, target_image_name) != NULL) { 270 | target_image_header = _dyld_get_image_header(iImg); 271 | break; 272 | } 273 | 274 | printf("image_name = %s\n" , image_name); 275 | } 276 | 277 | return target_image_header; 278 | } 279 | 280 | #pragma mark -- lazy list 281 | category_t **get_non_lazy_categary_list(size_t *count) { 282 | category_t **nlcatlist = NULL; 283 | nlcatlist = _getObjc2NonlazyCategoryList((headerType *)get_target_image_header(), count); 284 | return nlcatlist; 285 | } 286 | 287 | classref_t *get_non_lazy_class_list(size_t *count) { 288 | classref_t *nlclslist = NULL; 289 | nlclslist = _getObjc2NonlazyClassList((headerType *)get_target_image_header(), count); 290 | return nlclslist; 291 | } 292 | 293 | #pragma mark -- swizze Load 294 | void swizzeLoadMethodInClass(Class cls) 295 | { 296 | SEL originalSelector = NSSelectorFromString(@"load"); 297 | 298 | Method originalMethod = class_getClassMethod(cls, originalSelector); 299 | 300 | _VIMP viewDidLoad_IMP = (_VIMP)method_getImplementation(originalMethod); 301 | 302 | method_setImplementation(originalMethod, imp_implementationWithBlock(^(id target, SEL action) { 303 | 304 | NSLog(@"%@ did load",target); 305 | viewDidLoad_IMP(target,action); 306 | })); 307 | } 308 | 309 | void swizzeLoadMethodInClasss(Class cls, BOOL isCategary){ 310 | unsigned int methodCount = 0; 311 | Method * methods = class_copyMethodList(cls, &methodCount); 312 | NSUInteger currentLoadIndex = 0; 313 | for(unsigned int methodIndex = 0; methodIndex < methodCount; ++methodIndex){ 314 | Method method = methods[methodIndex]; 315 | objc_method_description *des = method_getDescription(method); 316 | std::string methodName(sel_getName(method_getName(method))); 317 | if(methodName == "load"){ 318 | ++currentLoadIndex; 319 | _VIMP load_IMP = (_VIMP)method_getImplementation(method); 320 | method_setImplementation(method, imp_implementationWithBlock(^(id target, SEL action) { 321 | LoadRulerBegin 322 | load_IMP(target,action); 323 | 324 | CFTimeInterval end = CACurrentMediaTime(); 325 | if(!g_loadcosts){ 326 | g_loadcosts = [[NSMutableArray alloc] initWithCapacity:10]; 327 | } 328 | 329 | NSString *name = [loadMS valueForKey:[NSString stringWithFormat:@"%p",load_IMP]]; 330 | if (name && name.length > 0) { 331 | }else{ 332 | name = NSStringFromClass(cls); 333 | } 334 | [g_loadcosts addObject:[NSString stringWithFormat:@"%@ - %@ms",name, @(1000 * (end - begin))]]; 335 | })); 336 | } 337 | } 338 | NSLog(@"%@",@(currentLoadIndex)); 339 | } 340 | 341 | IMP _category_getLoadMethod(category_t *cat) 342 | { 343 | const method_list_t *mlist; 344 | mlist = cat->classMethods; 345 | if (mlist) { 346 | for (const auto& meth : *mlist) { 347 | const char *name = (const char *)(void *)(meth.name); 348 | if (0 == strcmp(name, "load")) { 349 | return meth.imp; 350 | } 351 | } 352 | } 353 | return nil; 354 | } 355 | #pragma mark -- printLoadCosts 356 | void printLoadCostsInfo(){ 357 | NSLog(@">> all load cost info below :"); 358 | NSLog(@"\n"); 359 | 360 | NSArray *testArr = [g_loadcosts sortedArrayUsingSelector:@selector(compare:)]; 361 | 362 | for(NSString *costInfo in testArr){ 363 | NSLog(@"%@",costInfo); 364 | } 365 | NSLog(@"\n"); 366 | } 367 | 368 | 369 | 370 | 371 | #pragma mark -- load 372 | +(void)load{ 373 | CFTimeInterval begin = CACurrentMediaTime(); 374 | NSLog(@"############### count up the costs of load func ###############"); 375 | if(!loadMS){ 376 | loadMS = [[NSMutableDictionary alloc]init]; 377 | }else{ 378 | [loadMS removeAllObjects]; 379 | } 380 | 381 | if(!loadCS){ 382 | loadCS = [[NSMutableDictionary alloc]init]; 383 | }else{ 384 | [loadCS removeAllObjects]; 385 | } 386 | 387 | nlcategarylist = get_non_lazy_categary_list(&categaryCount); 388 | 389 | for (int i = 0; i < categaryCount; i++) { 390 | Class cls = (Class)CFBridgingRelease(nlcategarylist[i]->cls); 391 | cls = object_getClass(cls); 392 | NSString *name = [NSString stringWithCString:nlcategarylist[i]->name encoding:NSUTF8StringEncoding]; 393 | category_t *cat = nlcategarylist[i]; 394 | _VIMP load_IMP = (_VIMP)_category_getLoadMethod(cat); 395 | [loadMS addEntriesFromDictionary:@{[NSString stringWithFormat:@"%p",load_IMP]:[NSString stringWithFormat:@"%@(%@)",cls,name]}]; 396 | } 397 | 398 | 399 | for (int i = 0; i < categaryCount; i++) { 400 | Class cls = (Class)CFBridgingRelease(nlcategarylist[i]->cls); 401 | cls = object_getClass(cls); 402 | 403 | 404 | if(![[loadCS allKeys] containsObject:[NSString stringWithFormat:@"%@",cls]]) 405 | { 406 | swizzeLoadMethodInClasss(cls, YES); 407 | } 408 | 409 | [loadCS addEntriesFromDictionary:@{[NSString stringWithFormat:@"%@",cls]:cls}]; 410 | } 411 | 412 | 413 | //Implicitly Link Objective-C Runtime Support 414 | 415 | size_t count = 0; 416 | classref_t *nlclslist = get_non_lazy_class_list(&count); 417 | // ios deployment target 8.0有一个问题 '__ARCLite__'这个Class有点特殊,这个类也实现了load 418 | //最后一位指向的结构体中isa变量指向0x00000000的指针,故排除 419 | #if __IPHONE_OS_VERSION_MIN_REQUIRED >= 90000 420 | #else 421 | count--; 422 | #endif 423 | 424 | for (int i = 0; i < count; i++) { 425 | classref_t nlcls = nlclslist[i]; 426 | Class cls = (__bridge Class)nlcls; 427 | if ([@"__ARCLite__" isEqualToString:NSStringFromClass(cls)]) { 428 | continue; 429 | } 430 | cls = (Class)CFBridgingRelease(nlclslist[i]); 431 | cls = object_getClass(cls); 432 | NSLog(@"classref_t:%@",cls); 433 | 434 | if(![[loadCS allKeys] containsObject:[NSString stringWithFormat:@"%@",cls]]) 435 | { 436 | swizzeLoadMethodInClasss(cls, NO); 437 | } 438 | } 439 | 440 | CFTimeInterval end = CACurrentMediaTime(); 441 | 442 | NSLog(@"############### costs:%@ ###############",[NSString stringWithFormat:@"%@ - %@ms",NSStringFromClass([self class]), @(1000 * (end - begin))]); 443 | } 444 | @end 445 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | 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 | // TTAnalyzeLoadTimeTests.m 3 | // TTAnalyzeLoadTimeTests 4 | // 5 | // Created by huakucha on 12/14/2018. 6 | // Copyright (c) 2018 huakucha. 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 | 36 | -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 huakucha 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Pod/Products/lib/TTLoadTime.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.com.huakucha.TTLoadTime 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /Pod/Products/lib/TTLoadTime.framework.dSYM/Contents/Resources/DWARF/TTLoadTime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huakucha/TTAnalyzeLoadTime/99fe3f05183cf19d9af97003c21fa3f631a2803b/Pod/Products/lib/TTLoadTime.framework.dSYM/Contents/Resources/DWARF/TTLoadTime -------------------------------------------------------------------------------- /Pod/Products/lib/TTLoadTime.framework/Headers/TTLoadTime.h: -------------------------------------------------------------------------------- 1 | // 2 | // TTLoadTime.h 3 | // TTLoadTime 4 | // 5 | // Created by huakucha on 2018/12/13. 6 | // 7 | 8 | #import 9 | #import 10 | 11 | FOUNDATION_EXPORT void printLoadCostsInfo(); 12 | 13 | //! Project version number for LoadTime. 14 | FOUNDATION_EXPORT double LoadTimeVersionNumber; 15 | 16 | //! Project version string for LoadTime. 17 | FOUNDATION_EXPORT const unsigned char LoadTimeVersionString[]; 18 | 19 | -------------------------------------------------------------------------------- /Pod/Products/lib/TTLoadTime.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huakucha/TTAnalyzeLoadTime/99fe3f05183cf19d9af97003c21fa3f631a2803b/Pod/Products/lib/TTLoadTime.framework/Info.plist -------------------------------------------------------------------------------- /Pod/Products/lib/TTLoadTime.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module TTLoadTime { 2 | umbrella header "TTLoadTime.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pod/Products/lib/TTLoadTime.framework/TTLoadTime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huakucha/TTAnalyzeLoadTime/99fe3f05183cf19d9af97003c21fa3f631a2803b/Pod/Products/lib/TTLoadTime.framework/TTLoadTime -------------------------------------------------------------------------------- /Products/TTLoadTime.framework/Headers/TTLoadTime.h: -------------------------------------------------------------------------------- 1 | // 2 | // TTLoadTime.h 3 | // TTLoadTime 4 | // 5 | // Created by huakucha on 2018/12/13. 6 | // 7 | 8 | #import 9 | #import 10 | 11 | FOUNDATION_EXPORT void printLoadCostsInfo(); 12 | 13 | //! Project version number for LoadTime. 14 | FOUNDATION_EXPORT double LoadTimeVersionNumber; 15 | 16 | //! Project version string for LoadTime. 17 | FOUNDATION_EXPORT const unsigned char LoadTimeVersionString[]; 18 | 19 | -------------------------------------------------------------------------------- /Products/TTLoadTime.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huakucha/TTAnalyzeLoadTime/99fe3f05183cf19d9af97003c21fa3f631a2803b/Products/TTLoadTime.framework/Info.plist -------------------------------------------------------------------------------- /Products/TTLoadTime.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module TTLoadTime { 2 | umbrella header "TTLoadTime.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Products/TTLoadTime.framework/TTLoadTime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huakucha/TTAnalyzeLoadTime/99fe3f05183cf19d9af97003c21fa3f631a2803b/Products/TTLoadTime.framework/TTLoadTime -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TTAnalyzeLoadTime 2 | 通过Mach-O文件NonlazyClassList构建动态库进行iOS load方法耗时检测 3 | 4 | ## How To Get Started 5 | #### 简介 6 | * 仓库中提供了源码以及二进制的文件,源码提供了整个AnalyzeLoadTime的全部文件`TTLoadTime.mm`,二进制文件为一个动态库(为什么提供动态库文末有介绍),动态库为尽可能提前执行Load Method Swizzling提供了可能 7 | * 重写`_getObjc2NonlazyCategoryList `、`_getObjc2NonlazyClassList `(runtime源码中有介绍),可以快速拿到全部load的所属Class以及load 的IMP地址 8 | * 防止运行环境被破坏使用`method_setImplementation`构建block执行原函数 9 | * 寻找mach-o中的load以及Swizzle共耗时4毫秒 10 | 11 | 12 | #### Podfile 13 | 14 | To integrate TTAnalyzeLoadTime into your Xcode project using CocoaPods, specify it in your `Podfile`: 15 | 16 | ```ruby 17 | source 'https://github.com/CocoaPods/Specs.git' 18 | platform :ios, '8.0' 19 | 20 | target 'TargetName' do 21 | pod 'TTAnalyzeLoadTime', '~> 1.0' 22 | end 23 | ``` 24 | 25 | Then, run the following command: 26 | 27 | ```bash 28 | $ pod install 29 | ``` 30 | 31 | #### Usage 32 | 33 | ```ruby 34 | #import 35 | 36 | printLoadCostsInfo(); 37 | 38 | 2018-12-14 17:57:48.838908+0800 TTAnalyzeLoadTime_Example[10937:6344725] >> all load cost info below : 39 | 2018-12-14 17:57:48.838934+0800 TTAnalyzeLoadTime_Example[10937:6344725] 40 | 2018-12-14 17:57:48.838953+0800 TTAnalyzeLoadTime_Example[10937:6344725] PodLoadTime - 0.005083391442894936ms 41 | 2018-12-14 17:57:48.838962+0800 TTAnalyzeLoadTime_Example[10937:6344725] PodLoadTime(LoadTimer) - 0.005166628398001194ms 42 | 2018-12-14 17:57:48.838968+0800 TTAnalyzeLoadTime_Example[10937:6344725] TTViewController - 0.02345838584005833ms 43 | 2018-12-14 17:57:48.838974+0800 TTAnalyzeLoadTime_Example[10937:6344725] TTViewController(LoadTimer) - 0.005333335138857365ms 44 | 2018-12-14 17:57:48.838980+0800 TTAnalyzeLoadTime_Example[10937:6344725] 45 | ``` 46 | 47 | #### TODO 48 | 49 | 1. 白名单 50 | 2. 格式化打印(打印目前只能在控制台而且打印比较粗糙) 51 | 52 | 53 | #### 参考文章 54 | 55 | * https://juejin.im/post/5c0bb2e8e51d4529ee233fee 作者:CoderLin 56 | * https://mp.weixin.qq.com/s/kL__CM3CfP_7i8Obg8qzWQ 作者: everettjf 57 | 58 | -------------------------------------------------------------------------------- /TTAnalyzeLoadTime.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint TTAnalyzeLoadTime.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'TTAnalyzeLoadTime' 11 | s.version = '1.0.5' 12 | s.summary = 'A short description of TTAnalyzeLoadTime.' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = <<-DESC 21 | TODO: Add long description of the pod here. 22 | DESC 23 | 24 | s.homepage = 'https://github.com/huakucha/TTAnalyzeLoadTime' 25 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'huakucha' => '406823054@qq.com' } 28 | s.source = { :git => 'https://github.com/huakucha/TTAnalyzeLoadTime.git', :tag => s.version.to_s } 29 | # s.social_media_url = 'https://twitter.com/' 30 | 31 | s.ios.deployment_target = '8.0' 32 | 33 | #s.source_files = 'TTAnalyzeLoadTime/Classes/**/*' 34 | s.vendored_frameworks = 'Products/*.framework' 35 | 36 | # s.resource_bundles = { 37 | # 'TTAnalyzeLoadTime' => ['TTAnalyzeLoadTime/Assets/*.png'] 38 | # } 39 | 40 | # s.public_header_files = 'Pod/Classes/**/*.h' 41 | # s.frameworks = 'UIKit', 'MapKit' 42 | # s.dependency 'AFNetworking', '~> 2.3' 43 | end 44 | -------------------------------------------------------------------------------- /TTAnalyzeLoadTime/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huakucha/TTAnalyzeLoadTime/99fe3f05183cf19d9af97003c21fa3f631a2803b/TTAnalyzeLoadTime/Assets/.gitkeep -------------------------------------------------------------------------------- /TTAnalyzeLoadTime/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huakucha/TTAnalyzeLoadTime/99fe3f05183cf19d9af97003c21fa3f631a2803b/TTAnalyzeLoadTime/Classes/.gitkeep -------------------------------------------------------------------------------- /TTAnalyzeLoadTime/Classes/PodLoadTime.h: -------------------------------------------------------------------------------- 1 | // 2 | // PodLoadTime.h 3 | // TTAnalyzeLoadTime 4 | // 5 | // Created by huakucha on 2018/12/14. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @interface PodLoadTime : NSObject 13 | 14 | @end 15 | 16 | NS_ASSUME_NONNULL_END 17 | -------------------------------------------------------------------------------- /TTAnalyzeLoadTime/Classes/PodLoadTime.m: -------------------------------------------------------------------------------- 1 | // 2 | // PodLoadTime.m 3 | // TTAnalyzeLoadTime 4 | // 5 | // Created by huakucha on 2018/12/14. 6 | // 7 | 8 | #import "PodLoadTime.h" 9 | 10 | @implementation PodLoadTime 11 | 12 | +(void)load 13 | { 14 | NSLog(@"PodLoadTime"); 15 | } 16 | 17 | @end 18 | 19 | 20 | @interface PodLoadTime (LoadTimer) 21 | 22 | @end 23 | 24 | @implementation PodLoadTime (LoadTimer) 25 | 26 | +(void)load 27 | { 28 | NSLog(@"PodLoadTime (LoadTimer) load"); 29 | } 30 | 31 | @end 32 | 33 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------