├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── TypeOutAnimationLabel.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── TypeOutAnimationLabel.xcscheme │ └── Target Support Files │ │ ├── Pods-TypeOutAnimationLabel_Example │ │ ├── Info.plist │ │ ├── Pods-TypeOutAnimationLabel_Example-acknowledgements.markdown │ │ ├── Pods-TypeOutAnimationLabel_Example-acknowledgements.plist │ │ ├── Pods-TypeOutAnimationLabel_Example-dummy.m │ │ ├── Pods-TypeOutAnimationLabel_Example-frameworks.sh │ │ ├── Pods-TypeOutAnimationLabel_Example-resources.sh │ │ ├── Pods-TypeOutAnimationLabel_Example-umbrella.h │ │ ├── Pods-TypeOutAnimationLabel_Example.debug.xcconfig │ │ ├── Pods-TypeOutAnimationLabel_Example.modulemap │ │ └── Pods-TypeOutAnimationLabel_Example.release.xcconfig │ │ ├── Pods-TypeOutAnimationLabel_Tests │ │ ├── Info.plist │ │ ├── Pods-TypeOutAnimationLabel_Tests-acknowledgements.markdown │ │ ├── Pods-TypeOutAnimationLabel_Tests-acknowledgements.plist │ │ ├── Pods-TypeOutAnimationLabel_Tests-dummy.m │ │ ├── Pods-TypeOutAnimationLabel_Tests-frameworks.sh │ │ ├── Pods-TypeOutAnimationLabel_Tests-resources.sh │ │ ├── Pods-TypeOutAnimationLabel_Tests-umbrella.h │ │ ├── Pods-TypeOutAnimationLabel_Tests.debug.xcconfig │ │ ├── Pods-TypeOutAnimationLabel_Tests.modulemap │ │ └── Pods-TypeOutAnimationLabel_Tests.release.xcconfig │ │ └── TypeOutAnimationLabel │ │ ├── Info.plist │ │ ├── TypeOutAnimationLabel-dummy.m │ │ ├── TypeOutAnimationLabel-prefix.pch │ │ ├── TypeOutAnimationLabel-umbrella.h │ │ ├── TypeOutAnimationLabel.modulemap │ │ └── TypeOutAnimationLabel.xcconfig ├── Tests │ ├── Info.plist │ └── Tests.swift ├── TypeOutAnimationLabel.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── TypeOutAnimationLabel-Example.xcscheme ├── TypeOutAnimationLabel.xcworkspace │ └── contents.xcworkspacedata └── TypeOutAnimationLabel │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── LICENSE ├── README.md ├── TypeOutAnimationLabel.podspec ├── TypeOutAnimationLabel ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── TypeOutAnimationLabel.swift └── _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 | # Bundler 23 | .bundle 24 | 25 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | # Pods/ 34 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | language: objective-c 6 | # cache: cocoapods 7 | # podfile: Example/Podfile 8 | # before_install: 9 | # - gem install cocoapods # Since Travis is not always on latest version 10 | # - pod install --project-directory=Example 11 | script: 12 | - set -o pipefail && xcodebuild test -workspace Example/TypeOutAnimationLabel.xcworkspace -scheme TypeOutAnimationLabel-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty 13 | - pod lib lint 14 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'TypeOutAnimationLabel_Example', :exclusive => true do 4 | pod 'TypeOutAnimationLabel', :path => '../' 5 | end 6 | 7 | target 'TypeOutAnimationLabel_Tests', :exclusive => true do 8 | pod 'TypeOutAnimationLabel', :path => '../' 9 | 10 | 11 | end 12 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - TypeOutAnimationLabel (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - TypeOutAnimationLabel (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | TypeOutAnimationLabel: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | TypeOutAnimationLabel: 6009ad71384e851e0839718c8ca07d928a929296 13 | 14 | COCOAPODS: 0.39.0 15 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/TypeOutAnimationLabel.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "TypeOutAnimationLabel", 3 | "version": "0.1.0", 4 | "summary": "An UILabel with type out animation", 5 | "description": "", 6 | "homepage": "https://github.com/buubui/TypeOutAnimationLabel", 7 | "license": "MIT", 8 | "authors": { 9 | "Buu Bui": "github.com/buubui" 10 | }, 11 | "source": { 12 | "git": "https://github.com/buubui/TypeOutAnimationLabel.git", 13 | "tag": "0.1.0" 14 | }, 15 | "platforms": { 16 | "ios": "8.0" 17 | }, 18 | "source_files": "TypeOutAnimationLabel/Classes/**/*", 19 | "resource_bundles": { 20 | "TypeOutAnimationLabel": [ 21 | "TypeOutAnimationLabel/Assets/*.png" 22 | ] 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - TypeOutAnimationLabel (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - TypeOutAnimationLabel (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | TypeOutAnimationLabel: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | TypeOutAnimationLabel: 6009ad71384e851e0839718c8ca07d928a929296 13 | 14 | COCOAPODS: 0.39.0 15 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 02DE4A871CCA2485005419B2 /* TypeOutAnimationLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02DE4A861CCA2485005419B2 /* TypeOutAnimationLabel.swift */; }; 11 | 1049227F64BCE9C2CBE6810300B81FFE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; }; 12 | 15D8FE2FAA7095CB0017D53B9D4C3B77 /* TypeOutAnimationLabel.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 453DF7B30869B1E71880D41E93CBDFB4 /* TypeOutAnimationLabel.bundle */; }; 13 | 19BC17968EEA373D31BE3FD9CE5D8B68 /* Pods-TypeOutAnimationLabel_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4242A4C57AB72B8662CAD5201F6B8E48 /* Pods-TypeOutAnimationLabel_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 1E9E8A25E8E895436841ACA5875C39D6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; }; 15 | 6854CA732605F42CAE096F2D64EA5F4A /* TypeOutAnimationLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B804774AF764A5F4B5CA5E304FDF738 /* TypeOutAnimationLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | 72333167C5AAB52ECDCBC385FC06C34E /* Pods-TypeOutAnimationLabel_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AA82224EA53773E6183BF4D5D2EA49C /* Pods-TypeOutAnimationLabel_Example-dummy.m */; }; 17 | 75DAC480B5771886DABDA4311E4C8675 /* Pods-TypeOutAnimationLabel_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F20E9CE9B2B9DD4F8A8774711B88DE6 /* Pods-TypeOutAnimationLabel_Tests-dummy.m */; }; 18 | CED698A5176B7A59023EB33750BE75D1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; }; 19 | DAAA6F3472B816BB974C327CAD2B52D3 /* TypeOutAnimationLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 36825756724A45897CADE6E4EA0BE35F /* TypeOutAnimationLabel-dummy.m */; }; 20 | E82E09ECC05FF37C431E2C964E44D723 /* Pods-TypeOutAnimationLabel_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA9D169DAE6C19CA7CEB96CE2D19679 /* Pods-TypeOutAnimationLabel_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 21 | /* End PBXBuildFile section */ 22 | 23 | /* Begin PBXContainerItemProxy section */ 24 | 30C0DF207F83B962B095FA2DAD2EE2EA /* PBXContainerItemProxy */ = { 25 | isa = PBXContainerItemProxy; 26 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 27 | proxyType = 1; 28 | remoteGlobalIDString = 786A68970491997897DF79400617BC1D; 29 | remoteInfo = TypeOutAnimationLabel; 30 | }; 31 | 4931CDD67332DAC7E0615D69589B943C /* PBXContainerItemProxy */ = { 32 | isa = PBXContainerItemProxy; 33 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 34 | proxyType = 1; 35 | remoteGlobalIDString = 786A68970491997897DF79400617BC1D; 36 | remoteInfo = TypeOutAnimationLabel; 37 | }; 38 | C6D1CCA5F616CA1D9A9A7CAC40BCC296 /* PBXContainerItemProxy */ = { 39 | isa = PBXContainerItemProxy; 40 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 41 | proxyType = 1; 42 | remoteGlobalIDString = 2FC9AD9141A2F84097EBC3C0C8B77176; 43 | remoteInfo = "TypeOutAnimationLabel-TypeOutAnimationLabel"; 44 | }; 45 | /* End PBXContainerItemProxy section */ 46 | 47 | /* Begin PBXFileReference section */ 48 | 025881C6C29855F1793AEFB2058D5DD8 /* Pods-TypeOutAnimationLabel_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TypeOutAnimationLabel_Tests-acknowledgements.plist"; sourceTree = ""; }; 49 | 02DE4A861CCA2485005419B2 /* TypeOutAnimationLabel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TypeOutAnimationLabel.swift; sourceTree = ""; }; 50 | 0FA57D11152FF14FE83C0633E1074790 /* Pods-TypeOutAnimationLabel_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TypeOutAnimationLabel_Tests-acknowledgements.markdown"; sourceTree = ""; }; 51 | 11B8D204C627DB0C076189F5ED10F2F8 /* TypeOutAnimationLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = TypeOutAnimationLabel.modulemap; sourceTree = ""; }; 52 | 21C309E13DDA213ED64DE5401AED7717 /* Pods-TypeOutAnimationLabel_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TypeOutAnimationLabel_Example.release.xcconfig"; sourceTree = ""; }; 53 | 36825756724A45897CADE6E4EA0BE35F /* TypeOutAnimationLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TypeOutAnimationLabel-dummy.m"; sourceTree = ""; }; 54 | 3B804774AF764A5F4B5CA5E304FDF738 /* TypeOutAnimationLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TypeOutAnimationLabel-umbrella.h"; sourceTree = ""; }; 55 | 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 56 | 4242A4C57AB72B8662CAD5201F6B8E48 /* Pods-TypeOutAnimationLabel_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TypeOutAnimationLabel_Tests-umbrella.h"; sourceTree = ""; }; 57 | 430A56772189667F98C32DB3CDC3A2A8 /* TypeOutAnimationLabel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TypeOutAnimationLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 58 | 453DF7B30869B1E71880D41E93CBDFB4 /* TypeOutAnimationLabel.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TypeOutAnimationLabel.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 59 | 57FAB08B8973C0EDCE2A01D5A4860DEA /* Pods-TypeOutAnimationLabel_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TypeOutAnimationLabel_Example-frameworks.sh"; sourceTree = ""; }; 60 | 5DA9D169DAE6C19CA7CEB96CE2D19679 /* Pods-TypeOutAnimationLabel_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TypeOutAnimationLabel_Example-umbrella.h"; sourceTree = ""; }; 61 | 6B33B3B1BBBFB1AD28A019DD66AD88C8 /* TypeOutAnimationLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TypeOutAnimationLabel-prefix.pch"; sourceTree = ""; }; 62 | 6CADF7A73A0B25BEA61787589C0A3E90 /* Pods-TypeOutAnimationLabel_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TypeOutAnimationLabel_Tests-resources.sh"; sourceTree = ""; }; 63 | 7487067D7BFF221DBF8AF379226A8CEB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 64 | 7F6A5D09DBEE511EB3237BCF04CEDBD2 /* Pods-TypeOutAnimationLabel_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TypeOutAnimationLabel_Example-resources.sh"; sourceTree = ""; }; 65 | 8AA82224EA53773E6183BF4D5D2EA49C /* Pods-TypeOutAnimationLabel_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TypeOutAnimationLabel_Example-dummy.m"; sourceTree = ""; }; 66 | 8C05A0D9F95A608C952433155FB706E0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 67 | 8FB31F4B8FD0997556BBC44661C8BD11 /* Pods-TypeOutAnimationLabel_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TypeOutAnimationLabel_Tests.release.xcconfig"; sourceTree = ""; }; 68 | 91E44448FF9B1824A37035367E4C41CD /* Pods_TypeOutAnimationLabel_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TypeOutAnimationLabel_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 69 | 94A8E5C163D6FECB1DA86B265B4F6107 /* Pods-TypeOutAnimationLabel_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TypeOutAnimationLabel_Tests-frameworks.sh"; sourceTree = ""; }; 70 | 9AB0A2BDB363A9B5A0FADF94774E2FCE /* Pods_TypeOutAnimationLabel_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TypeOutAnimationLabel_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 71 | 9E97A585639629509A8B2A34C0BA95E2 /* Pods-TypeOutAnimationLabel_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-TypeOutAnimationLabel_Example.modulemap"; sourceTree = ""; }; 72 | 9F20E9CE9B2B9DD4F8A8774711B88DE6 /* Pods-TypeOutAnimationLabel_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TypeOutAnimationLabel_Tests-dummy.m"; sourceTree = ""; }; 73 | A50AFD2CC1269FD2F0499621DEE65529 /* TypeOutAnimationLabel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TypeOutAnimationLabel.xcconfig; sourceTree = ""; }; 74 | B1C1E1194BBFCC7C7BDA3271370C4A3A /* Pods-TypeOutAnimationLabel_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TypeOutAnimationLabel_Example-acknowledgements.plist"; sourceTree = ""; }; 75 | BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 76 | D3CFF6491CA34DAF4F1C1A6A56135954 /* Pods-TypeOutAnimationLabel_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-TypeOutAnimationLabel_Tests.modulemap"; sourceTree = ""; }; 77 | E50FB8352ACB87E05A725336D7392812 /* Pods-TypeOutAnimationLabel_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TypeOutAnimationLabel_Example-acknowledgements.markdown"; sourceTree = ""; }; 78 | EEC239D11B84745D0D2CA60D3875A79A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 79 | F258FEE0029012B25DC56CD684D2E99B /* Pods-TypeOutAnimationLabel_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TypeOutAnimationLabel_Tests.debug.xcconfig"; sourceTree = ""; }; 80 | F5B3DBF5F180BEBBA3422FC62D494E48 /* Pods-TypeOutAnimationLabel_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TypeOutAnimationLabel_Example.debug.xcconfig"; sourceTree = ""; }; 81 | /* End PBXFileReference section */ 82 | 83 | /* Begin PBXFrameworksBuildPhase section */ 84 | 8DFE9A4712A1DDB766A8DAA6E3ED4DBC /* Frameworks */ = { 85 | isa = PBXFrameworksBuildPhase; 86 | buildActionMask = 2147483647; 87 | files = ( 88 | 1E9E8A25E8E895436841ACA5875C39D6 /* Foundation.framework in Frameworks */, 89 | ); 90 | runOnlyForDeploymentPostprocessing = 0; 91 | }; 92 | F58FE66A12DA43072D01BB6E6E555160 /* Frameworks */ = { 93 | isa = PBXFrameworksBuildPhase; 94 | buildActionMask = 2147483647; 95 | files = ( 96 | ); 97 | runOnlyForDeploymentPostprocessing = 0; 98 | }; 99 | F7B8AAE2F6E0B6616833D75EE9D2023F /* Frameworks */ = { 100 | isa = PBXFrameworksBuildPhase; 101 | buildActionMask = 2147483647; 102 | files = ( 103 | CED698A5176B7A59023EB33750BE75D1 /* Foundation.framework in Frameworks */, 104 | ); 105 | runOnlyForDeploymentPostprocessing = 0; 106 | }; 107 | F95991C8BC7400B67AA6D629C0BAA6CA /* Frameworks */ = { 108 | isa = PBXFrameworksBuildPhase; 109 | buildActionMask = 2147483647; 110 | files = ( 111 | 1049227F64BCE9C2CBE6810300B81FFE /* Foundation.framework in Frameworks */, 112 | ); 113 | runOnlyForDeploymentPostprocessing = 0; 114 | }; 115 | /* End PBXFrameworksBuildPhase section */ 116 | 117 | /* Begin PBXGroup section */ 118 | 1EC0471E10FDB5843308F8959E49119B /* Development Pods */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 6E89365B99806F376EF45ED8536539F0 /* TypeOutAnimationLabel */, 122 | ); 123 | name = "Development Pods"; 124 | sourceTree = ""; 125 | }; 126 | 6296BED11F71D240C9C846648A731286 /* TypeOutAnimationLabel */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | BD0D41CA384804523DA8CFBBD4887EC4 /* Classes */, 130 | ); 131 | path = TypeOutAnimationLabel; 132 | sourceTree = ""; 133 | }; 134 | 6E89365B99806F376EF45ED8536539F0 /* TypeOutAnimationLabel */ = { 135 | isa = PBXGroup; 136 | children = ( 137 | 815C4525FBA375FFA2C34275F4CEDCD5 /* Support Files */, 138 | 6296BED11F71D240C9C846648A731286 /* TypeOutAnimationLabel */, 139 | ); 140 | name = TypeOutAnimationLabel; 141 | path = ../..; 142 | sourceTree = ""; 143 | }; 144 | 7DB346D0F39D3F0E887471402A8071AB = { 145 | isa = PBXGroup; 146 | children = ( 147 | BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */, 148 | 1EC0471E10FDB5843308F8959E49119B /* Development Pods */, 149 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 150 | 83CB6B137496CB198014FBE8DBFB22DC /* Products */, 151 | D29C938A1D26A2505B5AA88B38880ABA /* Targets Support Files */, 152 | ); 153 | sourceTree = ""; 154 | }; 155 | 815C4525FBA375FFA2C34275F4CEDCD5 /* Support Files */ = { 156 | isa = PBXGroup; 157 | children = ( 158 | 7487067D7BFF221DBF8AF379226A8CEB /* Info.plist */, 159 | 11B8D204C627DB0C076189F5ED10F2F8 /* TypeOutAnimationLabel.modulemap */, 160 | A50AFD2CC1269FD2F0499621DEE65529 /* TypeOutAnimationLabel.xcconfig */, 161 | 36825756724A45897CADE6E4EA0BE35F /* TypeOutAnimationLabel-dummy.m */, 162 | 6B33B3B1BBBFB1AD28A019DD66AD88C8 /* TypeOutAnimationLabel-prefix.pch */, 163 | 3B804774AF764A5F4B5CA5E304FDF738 /* TypeOutAnimationLabel-umbrella.h */, 164 | ); 165 | name = "Support Files"; 166 | path = "Example/Pods/Target Support Files/TypeOutAnimationLabel"; 167 | sourceTree = ""; 168 | }; 169 | 83CB6B137496CB198014FBE8DBFB22DC /* Products */ = { 170 | isa = PBXGroup; 171 | children = ( 172 | 9AB0A2BDB363A9B5A0FADF94774E2FCE /* Pods_TypeOutAnimationLabel_Example.framework */, 173 | 91E44448FF9B1824A37035367E4C41CD /* Pods_TypeOutAnimationLabel_Tests.framework */, 174 | 453DF7B30869B1E71880D41E93CBDFB4 /* TypeOutAnimationLabel.bundle */, 175 | 430A56772189667F98C32DB3CDC3A2A8 /* TypeOutAnimationLabel.framework */, 176 | ); 177 | name = Products; 178 | sourceTree = ""; 179 | }; 180 | B0469462E88151356F4E0728C044FBDC /* Pods-TypeOutAnimationLabel_Tests */ = { 181 | isa = PBXGroup; 182 | children = ( 183 | 8C05A0D9F95A608C952433155FB706E0 /* Info.plist */, 184 | D3CFF6491CA34DAF4F1C1A6A56135954 /* Pods-TypeOutAnimationLabel_Tests.modulemap */, 185 | 0FA57D11152FF14FE83C0633E1074790 /* Pods-TypeOutAnimationLabel_Tests-acknowledgements.markdown */, 186 | 025881C6C29855F1793AEFB2058D5DD8 /* Pods-TypeOutAnimationLabel_Tests-acknowledgements.plist */, 187 | 9F20E9CE9B2B9DD4F8A8774711B88DE6 /* Pods-TypeOutAnimationLabel_Tests-dummy.m */, 188 | 94A8E5C163D6FECB1DA86B265B4F6107 /* Pods-TypeOutAnimationLabel_Tests-frameworks.sh */, 189 | 6CADF7A73A0B25BEA61787589C0A3E90 /* Pods-TypeOutAnimationLabel_Tests-resources.sh */, 190 | 4242A4C57AB72B8662CAD5201F6B8E48 /* Pods-TypeOutAnimationLabel_Tests-umbrella.h */, 191 | F258FEE0029012B25DC56CD684D2E99B /* Pods-TypeOutAnimationLabel_Tests.debug.xcconfig */, 192 | 8FB31F4B8FD0997556BBC44661C8BD11 /* Pods-TypeOutAnimationLabel_Tests.release.xcconfig */, 193 | ); 194 | name = "Pods-TypeOutAnimationLabel_Tests"; 195 | path = "Target Support Files/Pods-TypeOutAnimationLabel_Tests"; 196 | sourceTree = ""; 197 | }; 198 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 199 | isa = PBXGroup; 200 | children = ( 201 | BF6342C8B29F4CEEA088EFF7AB4DE362 /* iOS */, 202 | ); 203 | name = Frameworks; 204 | sourceTree = ""; 205 | }; 206 | BD0D41CA384804523DA8CFBBD4887EC4 /* Classes */ = { 207 | isa = PBXGroup; 208 | children = ( 209 | 02DE4A861CCA2485005419B2 /* TypeOutAnimationLabel.swift */, 210 | ); 211 | path = Classes; 212 | sourceTree = ""; 213 | }; 214 | BF6342C8B29F4CEEA088EFF7AB4DE362 /* iOS */ = { 215 | isa = PBXGroup; 216 | children = ( 217 | 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */, 218 | ); 219 | name = iOS; 220 | sourceTree = ""; 221 | }; 222 | CD657323B6F420F6020948A7C0B2F52C /* Pods-TypeOutAnimationLabel_Example */ = { 223 | isa = PBXGroup; 224 | children = ( 225 | EEC239D11B84745D0D2CA60D3875A79A /* Info.plist */, 226 | 9E97A585639629509A8B2A34C0BA95E2 /* Pods-TypeOutAnimationLabel_Example.modulemap */, 227 | E50FB8352ACB87E05A725336D7392812 /* Pods-TypeOutAnimationLabel_Example-acknowledgements.markdown */, 228 | B1C1E1194BBFCC7C7BDA3271370C4A3A /* Pods-TypeOutAnimationLabel_Example-acknowledgements.plist */, 229 | 8AA82224EA53773E6183BF4D5D2EA49C /* Pods-TypeOutAnimationLabel_Example-dummy.m */, 230 | 57FAB08B8973C0EDCE2A01D5A4860DEA /* Pods-TypeOutAnimationLabel_Example-frameworks.sh */, 231 | 7F6A5D09DBEE511EB3237BCF04CEDBD2 /* Pods-TypeOutAnimationLabel_Example-resources.sh */, 232 | 5DA9D169DAE6C19CA7CEB96CE2D19679 /* Pods-TypeOutAnimationLabel_Example-umbrella.h */, 233 | F5B3DBF5F180BEBBA3422FC62D494E48 /* Pods-TypeOutAnimationLabel_Example.debug.xcconfig */, 234 | 21C309E13DDA213ED64DE5401AED7717 /* Pods-TypeOutAnimationLabel_Example.release.xcconfig */, 235 | ); 236 | name = "Pods-TypeOutAnimationLabel_Example"; 237 | path = "Target Support Files/Pods-TypeOutAnimationLabel_Example"; 238 | sourceTree = ""; 239 | }; 240 | D29C938A1D26A2505B5AA88B38880ABA /* Targets Support Files */ = { 241 | isa = PBXGroup; 242 | children = ( 243 | CD657323B6F420F6020948A7C0B2F52C /* Pods-TypeOutAnimationLabel_Example */, 244 | B0469462E88151356F4E0728C044FBDC /* Pods-TypeOutAnimationLabel_Tests */, 245 | ); 246 | name = "Targets Support Files"; 247 | sourceTree = ""; 248 | }; 249 | /* End PBXGroup section */ 250 | 251 | /* Begin PBXHeadersBuildPhase section */ 252 | 897E15463EDC60F39964B3D9BF9B60DB /* Headers */ = { 253 | isa = PBXHeadersBuildPhase; 254 | buildActionMask = 2147483647; 255 | files = ( 256 | E82E09ECC05FF37C431E2C964E44D723 /* Pods-TypeOutAnimationLabel_Example-umbrella.h in Headers */, 257 | ); 258 | runOnlyForDeploymentPostprocessing = 0; 259 | }; 260 | 92EA384359529DFE319B8164B002033A /* Headers */ = { 261 | isa = PBXHeadersBuildPhase; 262 | buildActionMask = 2147483647; 263 | files = ( 264 | 19BC17968EEA373D31BE3FD9CE5D8B68 /* Pods-TypeOutAnimationLabel_Tests-umbrella.h in Headers */, 265 | ); 266 | runOnlyForDeploymentPostprocessing = 0; 267 | }; 268 | BEAB3ABDD54380579398E73F718C53A2 /* Headers */ = { 269 | isa = PBXHeadersBuildPhase; 270 | buildActionMask = 2147483647; 271 | files = ( 272 | 6854CA732605F42CAE096F2D64EA5F4A /* TypeOutAnimationLabel-umbrella.h in Headers */, 273 | ); 274 | runOnlyForDeploymentPostprocessing = 0; 275 | }; 276 | /* End PBXHeadersBuildPhase section */ 277 | 278 | /* Begin PBXNativeTarget section */ 279 | 12BDBC07B6D1156EE039C857D65C2BD8 /* Pods-TypeOutAnimationLabel_Example */ = { 280 | isa = PBXNativeTarget; 281 | buildConfigurationList = D53ED49D48609B9A9FFA75EA054CCD4F /* Build configuration list for PBXNativeTarget "Pods-TypeOutAnimationLabel_Example" */; 282 | buildPhases = ( 283 | E526566D23CA849AA599E8AA5C73BDB1 /* Sources */, 284 | F7B8AAE2F6E0B6616833D75EE9D2023F /* Frameworks */, 285 | 897E15463EDC60F39964B3D9BF9B60DB /* Headers */, 286 | ); 287 | buildRules = ( 288 | ); 289 | dependencies = ( 290 | 635130DA6D53E302A3D2F7F4A0A9D1AA /* PBXTargetDependency */, 291 | ); 292 | name = "Pods-TypeOutAnimationLabel_Example"; 293 | productName = "Pods-TypeOutAnimationLabel_Example"; 294 | productReference = 9AB0A2BDB363A9B5A0FADF94774E2FCE /* Pods_TypeOutAnimationLabel_Example.framework */; 295 | productType = "com.apple.product-type.framework"; 296 | }; 297 | 2FC9AD9141A2F84097EBC3C0C8B77176 /* TypeOutAnimationLabel-TypeOutAnimationLabel */ = { 298 | isa = PBXNativeTarget; 299 | buildConfigurationList = 544323B9827A17127F1FBFBC02C4016D /* Build configuration list for PBXNativeTarget "TypeOutAnimationLabel-TypeOutAnimationLabel" */; 300 | buildPhases = ( 301 | 5BC770AE3F797721CFE68296FC5A4EB8 /* Sources */, 302 | F58FE66A12DA43072D01BB6E6E555160 /* Frameworks */, 303 | 5EF3207F6438F5B272847D40F9617E1C /* Resources */, 304 | ); 305 | buildRules = ( 306 | ); 307 | dependencies = ( 308 | ); 309 | name = "TypeOutAnimationLabel-TypeOutAnimationLabel"; 310 | productName = "TypeOutAnimationLabel-TypeOutAnimationLabel"; 311 | productReference = 453DF7B30869B1E71880D41E93CBDFB4 /* TypeOutAnimationLabel.bundle */; 312 | productType = "com.apple.product-type.bundle"; 313 | }; 314 | 3E1EFA70C14A6A2ABF73E2E0EE8A84BF /* Pods-TypeOutAnimationLabel_Tests */ = { 315 | isa = PBXNativeTarget; 316 | buildConfigurationList = AC52AEACFB3150AE77E6C3F9D5EB0CF5 /* Build configuration list for PBXNativeTarget "Pods-TypeOutAnimationLabel_Tests" */; 317 | buildPhases = ( 318 | 9E16E15E979BC663BED74080624E2318 /* Sources */, 319 | 8DFE9A4712A1DDB766A8DAA6E3ED4DBC /* Frameworks */, 320 | 92EA384359529DFE319B8164B002033A /* Headers */, 321 | ); 322 | buildRules = ( 323 | ); 324 | dependencies = ( 325 | EEDBAB52D9FE10E898EBDE514CFFC144 /* PBXTargetDependency */, 326 | ); 327 | name = "Pods-TypeOutAnimationLabel_Tests"; 328 | productName = "Pods-TypeOutAnimationLabel_Tests"; 329 | productReference = 91E44448FF9B1824A37035367E4C41CD /* Pods_TypeOutAnimationLabel_Tests.framework */; 330 | productType = "com.apple.product-type.framework"; 331 | }; 332 | 786A68970491997897DF79400617BC1D /* TypeOutAnimationLabel */ = { 333 | isa = PBXNativeTarget; 334 | buildConfigurationList = 518BBF502F74B0772D2A0A19278C3713 /* Build configuration list for PBXNativeTarget "TypeOutAnimationLabel" */; 335 | buildPhases = ( 336 | C2C658AEC56F606F71D9812A35D32D93 /* Sources */, 337 | F95991C8BC7400B67AA6D629C0BAA6CA /* Frameworks */, 338 | 56F62EAE2AA2347A283C9E52095CE7A5 /* Resources */, 339 | BEAB3ABDD54380579398E73F718C53A2 /* Headers */, 340 | ); 341 | buildRules = ( 342 | ); 343 | dependencies = ( 344 | 28572835497283F0B6CA9C1F4462E0E7 /* PBXTargetDependency */, 345 | ); 346 | name = TypeOutAnimationLabel; 347 | productName = TypeOutAnimationLabel; 348 | productReference = 430A56772189667F98C32DB3CDC3A2A8 /* TypeOutAnimationLabel.framework */; 349 | productType = "com.apple.product-type.framework"; 350 | }; 351 | /* End PBXNativeTarget section */ 352 | 353 | /* Begin PBXProject section */ 354 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 355 | isa = PBXProject; 356 | attributes = { 357 | LastSwiftUpdateCheck = 0700; 358 | LastUpgradeCheck = 0700; 359 | }; 360 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 361 | compatibilityVersion = "Xcode 3.2"; 362 | developmentRegion = English; 363 | hasScannedForEncodings = 0; 364 | knownRegions = ( 365 | en, 366 | ); 367 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 368 | productRefGroup = 83CB6B137496CB198014FBE8DBFB22DC /* Products */; 369 | projectDirPath = ""; 370 | projectRoot = ""; 371 | targets = ( 372 | 12BDBC07B6D1156EE039C857D65C2BD8 /* Pods-TypeOutAnimationLabel_Example */, 373 | 3E1EFA70C14A6A2ABF73E2E0EE8A84BF /* Pods-TypeOutAnimationLabel_Tests */, 374 | 786A68970491997897DF79400617BC1D /* TypeOutAnimationLabel */, 375 | 2FC9AD9141A2F84097EBC3C0C8B77176 /* TypeOutAnimationLabel-TypeOutAnimationLabel */, 376 | ); 377 | }; 378 | /* End PBXProject section */ 379 | 380 | /* Begin PBXResourcesBuildPhase section */ 381 | 56F62EAE2AA2347A283C9E52095CE7A5 /* Resources */ = { 382 | isa = PBXResourcesBuildPhase; 383 | buildActionMask = 2147483647; 384 | files = ( 385 | 15D8FE2FAA7095CB0017D53B9D4C3B77 /* TypeOutAnimationLabel.bundle in Resources */, 386 | ); 387 | runOnlyForDeploymentPostprocessing = 0; 388 | }; 389 | 5EF3207F6438F5B272847D40F9617E1C /* Resources */ = { 390 | isa = PBXResourcesBuildPhase; 391 | buildActionMask = 2147483647; 392 | files = ( 393 | ); 394 | runOnlyForDeploymentPostprocessing = 0; 395 | }; 396 | /* End PBXResourcesBuildPhase section */ 397 | 398 | /* Begin PBXSourcesBuildPhase section */ 399 | 5BC770AE3F797721CFE68296FC5A4EB8 /* Sources */ = { 400 | isa = PBXSourcesBuildPhase; 401 | buildActionMask = 2147483647; 402 | files = ( 403 | ); 404 | runOnlyForDeploymentPostprocessing = 0; 405 | }; 406 | 9E16E15E979BC663BED74080624E2318 /* Sources */ = { 407 | isa = PBXSourcesBuildPhase; 408 | buildActionMask = 2147483647; 409 | files = ( 410 | 75DAC480B5771886DABDA4311E4C8675 /* Pods-TypeOutAnimationLabel_Tests-dummy.m in Sources */, 411 | ); 412 | runOnlyForDeploymentPostprocessing = 0; 413 | }; 414 | C2C658AEC56F606F71D9812A35D32D93 /* Sources */ = { 415 | isa = PBXSourcesBuildPhase; 416 | buildActionMask = 2147483647; 417 | files = ( 418 | DAAA6F3472B816BB974C327CAD2B52D3 /* TypeOutAnimationLabel-dummy.m in Sources */, 419 | 02DE4A871CCA2485005419B2 /* TypeOutAnimationLabel.swift in Sources */, 420 | ); 421 | runOnlyForDeploymentPostprocessing = 0; 422 | }; 423 | E526566D23CA849AA599E8AA5C73BDB1 /* Sources */ = { 424 | isa = PBXSourcesBuildPhase; 425 | buildActionMask = 2147483647; 426 | files = ( 427 | 72333167C5AAB52ECDCBC385FC06C34E /* Pods-TypeOutAnimationLabel_Example-dummy.m in Sources */, 428 | ); 429 | runOnlyForDeploymentPostprocessing = 0; 430 | }; 431 | /* End PBXSourcesBuildPhase section */ 432 | 433 | /* Begin PBXTargetDependency section */ 434 | 28572835497283F0B6CA9C1F4462E0E7 /* PBXTargetDependency */ = { 435 | isa = PBXTargetDependency; 436 | name = "TypeOutAnimationLabel-TypeOutAnimationLabel"; 437 | target = 2FC9AD9141A2F84097EBC3C0C8B77176 /* TypeOutAnimationLabel-TypeOutAnimationLabel */; 438 | targetProxy = C6D1CCA5F616CA1D9A9A7CAC40BCC296 /* PBXContainerItemProxy */; 439 | }; 440 | 635130DA6D53E302A3D2F7F4A0A9D1AA /* PBXTargetDependency */ = { 441 | isa = PBXTargetDependency; 442 | name = TypeOutAnimationLabel; 443 | target = 786A68970491997897DF79400617BC1D /* TypeOutAnimationLabel */; 444 | targetProxy = 4931CDD67332DAC7E0615D69589B943C /* PBXContainerItemProxy */; 445 | }; 446 | EEDBAB52D9FE10E898EBDE514CFFC144 /* PBXTargetDependency */ = { 447 | isa = PBXTargetDependency; 448 | name = TypeOutAnimationLabel; 449 | target = 786A68970491997897DF79400617BC1D /* TypeOutAnimationLabel */; 450 | targetProxy = 30C0DF207F83B962B095FA2DAD2EE2EA /* PBXContainerItemProxy */; 451 | }; 452 | /* End PBXTargetDependency section */ 453 | 454 | /* Begin XCBuildConfiguration section */ 455 | 10DE1947DAC0ED28F6C0A9F9BD75D546 /* Release */ = { 456 | isa = XCBuildConfiguration; 457 | buildSettings = { 458 | ALWAYS_SEARCH_USER_PATHS = NO; 459 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 460 | CLANG_CXX_LIBRARY = "libc++"; 461 | CLANG_ENABLE_MODULES = YES; 462 | CLANG_ENABLE_OBJC_ARC = YES; 463 | CLANG_WARN_BOOL_CONVERSION = YES; 464 | CLANG_WARN_CONSTANT_CONVERSION = YES; 465 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 466 | CLANG_WARN_EMPTY_BODY = YES; 467 | CLANG_WARN_ENUM_CONVERSION = YES; 468 | CLANG_WARN_INT_CONVERSION = YES; 469 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 470 | CLANG_WARN_UNREACHABLE_CODE = YES; 471 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 472 | COPY_PHASE_STRIP = YES; 473 | ENABLE_NS_ASSERTIONS = NO; 474 | GCC_C_LANGUAGE_STANDARD = gnu99; 475 | GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1"; 476 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 477 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 478 | GCC_WARN_UNDECLARED_SELECTOR = YES; 479 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 480 | GCC_WARN_UNUSED_FUNCTION = YES; 481 | GCC_WARN_UNUSED_VARIABLE = YES; 482 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 483 | STRIP_INSTALLED_PRODUCT = NO; 484 | SYMROOT = "${SRCROOT}/../build"; 485 | VALIDATE_PRODUCT = YES; 486 | }; 487 | name = Release; 488 | }; 489 | 1B6CAF5734CFF1870EEBA91B08611EEF /* Debug */ = { 490 | isa = XCBuildConfiguration; 491 | baseConfigurationReference = A50AFD2CC1269FD2F0499621DEE65529 /* TypeOutAnimationLabel.xcconfig */; 492 | buildSettings = { 493 | ENABLE_STRICT_OBJC_MSGSEND = YES; 494 | PRODUCT_NAME = TypeOutAnimationLabel; 495 | SDKROOT = iphoneos; 496 | SKIP_INSTALL = YES; 497 | WRAPPER_EXTENSION = bundle; 498 | }; 499 | name = Debug; 500 | }; 501 | 25C64EE0560EAA418F62F969DB31AA17 /* Release */ = { 502 | isa = XCBuildConfiguration; 503 | baseConfigurationReference = A50AFD2CC1269FD2F0499621DEE65529 /* TypeOutAnimationLabel.xcconfig */; 504 | buildSettings = { 505 | ENABLE_STRICT_OBJC_MSGSEND = YES; 506 | PRODUCT_NAME = TypeOutAnimationLabel; 507 | SDKROOT = iphoneos; 508 | SKIP_INSTALL = YES; 509 | WRAPPER_EXTENSION = bundle; 510 | }; 511 | name = Release; 512 | }; 513 | 552D02D5BA751AC2E8790D2811D496CA /* Debug */ = { 514 | isa = XCBuildConfiguration; 515 | buildSettings = { 516 | ALWAYS_SEARCH_USER_PATHS = NO; 517 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 518 | CLANG_CXX_LIBRARY = "libc++"; 519 | CLANG_ENABLE_MODULES = YES; 520 | CLANG_ENABLE_OBJC_ARC = YES; 521 | CLANG_WARN_BOOL_CONVERSION = YES; 522 | CLANG_WARN_CONSTANT_CONVERSION = YES; 523 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 524 | CLANG_WARN_EMPTY_BODY = YES; 525 | CLANG_WARN_ENUM_CONVERSION = YES; 526 | CLANG_WARN_INT_CONVERSION = YES; 527 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 528 | CLANG_WARN_UNREACHABLE_CODE = YES; 529 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 530 | COPY_PHASE_STRIP = NO; 531 | GCC_C_LANGUAGE_STANDARD = gnu99; 532 | GCC_DYNAMIC_NO_PIC = NO; 533 | GCC_OPTIMIZATION_LEVEL = 0; 534 | GCC_PREPROCESSOR_DEFINITIONS = ( 535 | "DEBUG=1", 536 | "$(inherited)", 537 | ); 538 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 539 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 540 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 541 | GCC_WARN_UNDECLARED_SELECTOR = YES; 542 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 543 | GCC_WARN_UNUSED_FUNCTION = YES; 544 | GCC_WARN_UNUSED_VARIABLE = YES; 545 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 546 | ONLY_ACTIVE_ARCH = YES; 547 | STRIP_INSTALLED_PRODUCT = NO; 548 | SYMROOT = "${SRCROOT}/../build"; 549 | }; 550 | name = Debug; 551 | }; 552 | 568B8462A9CAFC77ED2A8BC184B89BAA /* Debug */ = { 553 | isa = XCBuildConfiguration; 554 | baseConfigurationReference = A50AFD2CC1269FD2F0499621DEE65529 /* TypeOutAnimationLabel.xcconfig */; 555 | buildSettings = { 556 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 557 | CURRENT_PROJECT_VERSION = 1; 558 | DEFINES_MODULE = YES; 559 | DYLIB_COMPATIBILITY_VERSION = 1; 560 | DYLIB_CURRENT_VERSION = 1; 561 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 562 | ENABLE_STRICT_OBJC_MSGSEND = YES; 563 | GCC_PREFIX_HEADER = "Target Support Files/TypeOutAnimationLabel/TypeOutAnimationLabel-prefix.pch"; 564 | INFOPLIST_FILE = "Target Support Files/TypeOutAnimationLabel/Info.plist"; 565 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 566 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 567 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 568 | MODULEMAP_FILE = "Target Support Files/TypeOutAnimationLabel/TypeOutAnimationLabel.modulemap"; 569 | MTL_ENABLE_DEBUG_INFO = YES; 570 | PRODUCT_NAME = TypeOutAnimationLabel; 571 | SDKROOT = iphoneos; 572 | SKIP_INSTALL = YES; 573 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 574 | TARGETED_DEVICE_FAMILY = "1,2"; 575 | VERSIONING_SYSTEM = "apple-generic"; 576 | VERSION_INFO_PREFIX = ""; 577 | }; 578 | name = Debug; 579 | }; 580 | 889915C4F5D00455D1FCDC50EECBE3C7 /* Release */ = { 581 | isa = XCBuildConfiguration; 582 | baseConfigurationReference = 21C309E13DDA213ED64DE5401AED7717 /* Pods-TypeOutAnimationLabel_Example.release.xcconfig */; 583 | buildSettings = { 584 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 585 | CURRENT_PROJECT_VERSION = 1; 586 | DEFINES_MODULE = YES; 587 | DYLIB_COMPATIBILITY_VERSION = 1; 588 | DYLIB_CURRENT_VERSION = 1; 589 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 590 | ENABLE_STRICT_OBJC_MSGSEND = YES; 591 | INFOPLIST_FILE = "Target Support Files/Pods-TypeOutAnimationLabel_Example/Info.plist"; 592 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 593 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 594 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 595 | MACH_O_TYPE = staticlib; 596 | MODULEMAP_FILE = "Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example.modulemap"; 597 | MTL_ENABLE_DEBUG_INFO = NO; 598 | OTHER_LDFLAGS = ""; 599 | OTHER_LIBTOOLFLAGS = ""; 600 | PODS_ROOT = "$(SRCROOT)"; 601 | PRODUCT_NAME = Pods_TypeOutAnimationLabel_Example; 602 | SDKROOT = iphoneos; 603 | SKIP_INSTALL = YES; 604 | TARGETED_DEVICE_FAMILY = "1,2"; 605 | VERSIONING_SYSTEM = "apple-generic"; 606 | VERSION_INFO_PREFIX = ""; 607 | }; 608 | name = Release; 609 | }; 610 | C4DE77443185A5595276D3786FBA9401 /* Release */ = { 611 | isa = XCBuildConfiguration; 612 | baseConfigurationReference = A50AFD2CC1269FD2F0499621DEE65529 /* TypeOutAnimationLabel.xcconfig */; 613 | buildSettings = { 614 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 615 | CURRENT_PROJECT_VERSION = 1; 616 | DEFINES_MODULE = YES; 617 | DYLIB_COMPATIBILITY_VERSION = 1; 618 | DYLIB_CURRENT_VERSION = 1; 619 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 620 | ENABLE_STRICT_OBJC_MSGSEND = YES; 621 | GCC_PREFIX_HEADER = "Target Support Files/TypeOutAnimationLabel/TypeOutAnimationLabel-prefix.pch"; 622 | INFOPLIST_FILE = "Target Support Files/TypeOutAnimationLabel/Info.plist"; 623 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 624 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 625 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 626 | MODULEMAP_FILE = "Target Support Files/TypeOutAnimationLabel/TypeOutAnimationLabel.modulemap"; 627 | MTL_ENABLE_DEBUG_INFO = NO; 628 | PRODUCT_NAME = TypeOutAnimationLabel; 629 | SDKROOT = iphoneos; 630 | SKIP_INSTALL = YES; 631 | TARGETED_DEVICE_FAMILY = "1,2"; 632 | VERSIONING_SYSTEM = "apple-generic"; 633 | VERSION_INFO_PREFIX = ""; 634 | }; 635 | name = Release; 636 | }; 637 | F6D317DF842B6F748760BAE3F6C8AB3B /* Debug */ = { 638 | isa = XCBuildConfiguration; 639 | baseConfigurationReference = F5B3DBF5F180BEBBA3422FC62D494E48 /* Pods-TypeOutAnimationLabel_Example.debug.xcconfig */; 640 | buildSettings = { 641 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 642 | CURRENT_PROJECT_VERSION = 1; 643 | DEFINES_MODULE = YES; 644 | DYLIB_COMPATIBILITY_VERSION = 1; 645 | DYLIB_CURRENT_VERSION = 1; 646 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 647 | ENABLE_STRICT_OBJC_MSGSEND = YES; 648 | INFOPLIST_FILE = "Target Support Files/Pods-TypeOutAnimationLabel_Example/Info.plist"; 649 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 650 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 651 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 652 | MACH_O_TYPE = staticlib; 653 | MODULEMAP_FILE = "Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example.modulemap"; 654 | MTL_ENABLE_DEBUG_INFO = YES; 655 | OTHER_LDFLAGS = ""; 656 | OTHER_LIBTOOLFLAGS = ""; 657 | PODS_ROOT = "$(SRCROOT)"; 658 | PRODUCT_NAME = Pods_TypeOutAnimationLabel_Example; 659 | SDKROOT = iphoneos; 660 | SKIP_INSTALL = YES; 661 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 662 | TARGETED_DEVICE_FAMILY = "1,2"; 663 | VERSIONING_SYSTEM = "apple-generic"; 664 | VERSION_INFO_PREFIX = ""; 665 | }; 666 | name = Debug; 667 | }; 668 | F95BA8503422185AB77E77264A9AEEE0 /* Debug */ = { 669 | isa = XCBuildConfiguration; 670 | baseConfigurationReference = F258FEE0029012B25DC56CD684D2E99B /* Pods-TypeOutAnimationLabel_Tests.debug.xcconfig */; 671 | buildSettings = { 672 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 673 | CURRENT_PROJECT_VERSION = 1; 674 | DEFINES_MODULE = YES; 675 | DYLIB_COMPATIBILITY_VERSION = 1; 676 | DYLIB_CURRENT_VERSION = 1; 677 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 678 | ENABLE_STRICT_OBJC_MSGSEND = YES; 679 | INFOPLIST_FILE = "Target Support Files/Pods-TypeOutAnimationLabel_Tests/Info.plist"; 680 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 681 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 682 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 683 | MACH_O_TYPE = staticlib; 684 | MODULEMAP_FILE = "Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests.modulemap"; 685 | MTL_ENABLE_DEBUG_INFO = YES; 686 | OTHER_LDFLAGS = ""; 687 | OTHER_LIBTOOLFLAGS = ""; 688 | PODS_ROOT = "$(SRCROOT)"; 689 | PRODUCT_NAME = Pods_TypeOutAnimationLabel_Tests; 690 | SDKROOT = iphoneos; 691 | SKIP_INSTALL = YES; 692 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 693 | TARGETED_DEVICE_FAMILY = "1,2"; 694 | VERSIONING_SYSTEM = "apple-generic"; 695 | VERSION_INFO_PREFIX = ""; 696 | }; 697 | name = Debug; 698 | }; 699 | FE870D6435457FD18B06443153C3F615 /* Release */ = { 700 | isa = XCBuildConfiguration; 701 | baseConfigurationReference = 8FB31F4B8FD0997556BBC44661C8BD11 /* Pods-TypeOutAnimationLabel_Tests.release.xcconfig */; 702 | buildSettings = { 703 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 704 | CURRENT_PROJECT_VERSION = 1; 705 | DEFINES_MODULE = YES; 706 | DYLIB_COMPATIBILITY_VERSION = 1; 707 | DYLIB_CURRENT_VERSION = 1; 708 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 709 | ENABLE_STRICT_OBJC_MSGSEND = YES; 710 | INFOPLIST_FILE = "Target Support Files/Pods-TypeOutAnimationLabel_Tests/Info.plist"; 711 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 712 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 713 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 714 | MACH_O_TYPE = staticlib; 715 | MODULEMAP_FILE = "Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests.modulemap"; 716 | MTL_ENABLE_DEBUG_INFO = NO; 717 | OTHER_LDFLAGS = ""; 718 | OTHER_LIBTOOLFLAGS = ""; 719 | PODS_ROOT = "$(SRCROOT)"; 720 | PRODUCT_NAME = Pods_TypeOutAnimationLabel_Tests; 721 | SDKROOT = iphoneos; 722 | SKIP_INSTALL = YES; 723 | TARGETED_DEVICE_FAMILY = "1,2"; 724 | VERSIONING_SYSTEM = "apple-generic"; 725 | VERSION_INFO_PREFIX = ""; 726 | }; 727 | name = Release; 728 | }; 729 | /* End XCBuildConfiguration section */ 730 | 731 | /* Begin XCConfigurationList section */ 732 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 733 | isa = XCConfigurationList; 734 | buildConfigurations = ( 735 | 552D02D5BA751AC2E8790D2811D496CA /* Debug */, 736 | 10DE1947DAC0ED28F6C0A9F9BD75D546 /* Release */, 737 | ); 738 | defaultConfigurationIsVisible = 0; 739 | defaultConfigurationName = Release; 740 | }; 741 | 518BBF502F74B0772D2A0A19278C3713 /* Build configuration list for PBXNativeTarget "TypeOutAnimationLabel" */ = { 742 | isa = XCConfigurationList; 743 | buildConfigurations = ( 744 | 568B8462A9CAFC77ED2A8BC184B89BAA /* Debug */, 745 | C4DE77443185A5595276D3786FBA9401 /* Release */, 746 | ); 747 | defaultConfigurationIsVisible = 0; 748 | defaultConfigurationName = Release; 749 | }; 750 | 544323B9827A17127F1FBFBC02C4016D /* Build configuration list for PBXNativeTarget "TypeOutAnimationLabel-TypeOutAnimationLabel" */ = { 751 | isa = XCConfigurationList; 752 | buildConfigurations = ( 753 | 1B6CAF5734CFF1870EEBA91B08611EEF /* Debug */, 754 | 25C64EE0560EAA418F62F969DB31AA17 /* Release */, 755 | ); 756 | defaultConfigurationIsVisible = 0; 757 | defaultConfigurationName = Release; 758 | }; 759 | AC52AEACFB3150AE77E6C3F9D5EB0CF5 /* Build configuration list for PBXNativeTarget "Pods-TypeOutAnimationLabel_Tests" */ = { 760 | isa = XCConfigurationList; 761 | buildConfigurations = ( 762 | F95BA8503422185AB77E77264A9AEEE0 /* Debug */, 763 | FE870D6435457FD18B06443153C3F615 /* Release */, 764 | ); 765 | defaultConfigurationIsVisible = 0; 766 | defaultConfigurationName = Release; 767 | }; 768 | D53ED49D48609B9A9FFA75EA054CCD4F /* Build configuration list for PBXNativeTarget "Pods-TypeOutAnimationLabel_Example" */ = { 769 | isa = XCConfigurationList; 770 | buildConfigurations = ( 771 | F6D317DF842B6F748760BAE3F6C8AB3B /* Debug */, 772 | 889915C4F5D00455D1FCDC50EECBE3C7 /* Release */, 773 | ); 774 | defaultConfigurationIsVisible = 0; 775 | defaultConfigurationName = Release; 776 | }; 777 | /* End XCConfigurationList section */ 778 | }; 779 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 780 | } 781 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/TypeOutAnimationLabel.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 44 | 45 | 46 | 52 | 53 | 55 | 56 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | com.buubui.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## TypeOutAnimationLabel 5 | 6 | Copyright (c) 2016 Buu Bui 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_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) 2016 Buu Bui <github.com/buubui> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | TypeOutAnimationLabel 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_TypeOutAnimationLabel_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_TypeOutAnimationLabel_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "Pods-TypeOutAnimationLabel_Example/TypeOutAnimationLabel.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "Pods-TypeOutAnimationLabel_Example/TypeOutAnimationLabel.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | realpath() { 12 | DIRECTORY="$(cd "${1%/*}" && pwd)" 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 22 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 23 | ;; 24 | *.xib) 25 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 26 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | 61 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 62 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 63 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 64 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 65 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 66 | fi 67 | rm -f "$RESOURCES_TO_COPY" 68 | 69 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 70 | then 71 | case "${TARGETED_DEVICE_FAMILY}" in 72 | 1,2) 73 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 74 | ;; 75 | 1) 76 | TARGET_DEVICE_ARGS="--target-device iphone" 77 | ;; 78 | 2) 79 | TARGET_DEVICE_ARGS="--target-device ipad" 80 | ;; 81 | *) 82 | TARGET_DEVICE_ARGS="--target-device mac" 83 | ;; 84 | esac 85 | 86 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 87 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 88 | while read line; do 89 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 90 | XCASSET_FILES+=("$line") 91 | fi 92 | done <<<"$OTHER_XCASSETS" 93 | 94 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 95 | fi 96 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_TypeOutAnimationLabel_ExampleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_TypeOutAnimationLabel_ExampleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/TypeOutAnimationLabel.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "TypeOutAnimationLabel" 6 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 7 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-TypeOutAnimationLabel_Example 8 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_TypeOutAnimationLabel_Example { 2 | umbrella header "Pods-TypeOutAnimationLabel_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/TypeOutAnimationLabel.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "TypeOutAnimationLabel" 6 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 7 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-TypeOutAnimationLabel_Example 8 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | com.buubui.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## TypeOutAnimationLabel 5 | 6 | Copyright (c) 2016 Buu Bui 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2016 Buu Bui <github.com/buubui> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | TypeOutAnimationLabel 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_TypeOutAnimationLabel_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_TypeOutAnimationLabel_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "Pods-TypeOutAnimationLabel_Tests/TypeOutAnimationLabel.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "Pods-TypeOutAnimationLabel_Tests/TypeOutAnimationLabel.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | realpath() { 12 | DIRECTORY="$(cd "${1%/*}" && pwd)" 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 22 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 23 | ;; 24 | *.xib) 25 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 26 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | 61 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 62 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 63 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 64 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 65 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 66 | fi 67 | rm -f "$RESOURCES_TO_COPY" 68 | 69 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 70 | then 71 | case "${TARGETED_DEVICE_FAMILY}" in 72 | 1,2) 73 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 74 | ;; 75 | 1) 76 | TARGET_DEVICE_ARGS="--target-device iphone" 77 | ;; 78 | 2) 79 | TARGET_DEVICE_ARGS="--target-device ipad" 80 | ;; 81 | *) 82 | TARGET_DEVICE_ARGS="--target-device mac" 83 | ;; 84 | esac 85 | 86 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 87 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 88 | while read line; do 89 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 90 | XCASSET_FILES+=("$line") 91 | fi 92 | done <<<"$OTHER_XCASSETS" 93 | 94 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 95 | fi 96 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_TypeOutAnimationLabel_TestsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_TypeOutAnimationLabel_TestsVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/TypeOutAnimationLabel.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "TypeOutAnimationLabel" 6 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 7 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-TypeOutAnimationLabel_Tests 8 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_TypeOutAnimationLabel_Tests { 2 | umbrella header "Pods-TypeOutAnimationLabel_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/TypeOutAnimationLabel.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "TypeOutAnimationLabel" 6 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 7 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-TypeOutAnimationLabel_Tests 8 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TypeOutAnimationLabel/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | com.buubui.${PRODUCT_NAME:rfc1034identifier} 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/TypeOutAnimationLabel/TypeOutAnimationLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_TypeOutAnimationLabel : NSObject 3 | @end 4 | @implementation PodsDummy_TypeOutAnimationLabel 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TypeOutAnimationLabel/TypeOutAnimationLabel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TypeOutAnimationLabel/TypeOutAnimationLabel-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double TypeOutAnimationLabelVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char TypeOutAnimationLabelVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TypeOutAnimationLabel/TypeOutAnimationLabel.modulemap: -------------------------------------------------------------------------------- 1 | framework module TypeOutAnimationLabel { 2 | umbrella header "TypeOutAnimationLabel-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TypeOutAnimationLabel/TypeOutAnimationLabel.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/TypeOutAnimationLabel" "${PODS_ROOT}/Headers/Public" 3 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 4 | PODS_ROOT = ${SRCROOT} 5 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import XCTest 3 | import TypeOutAnimationLabel 4 | 5 | class Tests: XCTestCase { 6 | 7 | override func setUp() { 8 | super.setUp() 9 | // Put setup code here. This method is called before the invocation of each test method in the class. 10 | } 11 | 12 | override func tearDown() { 13 | // Put teardown code here. This method is called after the invocation of each test method in the class. 14 | super.tearDown() 15 | } 16 | 17 | func testExample() { 18 | // This is an example of a functional test case. 19 | XCTAssert(true, "Pass") 20 | } 21 | 22 | func testPerformanceExample() { 23 | // This is an example of a performance test case. 24 | self.measureBlock() { 25 | // Put the code you want to measure the time of here. 26 | } 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /Example/TypeOutAnimationLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 5E02B5A6B4A3F6A6E5EEB616 /* Pods_TypeOutAnimationLabel_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EC335F7E65C4A5A86F2CC0B4 /* Pods_TypeOutAnimationLabel_Example.framework */; }; 11 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 12 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 13 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 14 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 15 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 16 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 17 | E3FE4AF91B9ED1B34C0015CA /* Pods_TypeOutAnimationLabel_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DBCFD670605C16781171DD75 /* Pods_TypeOutAnimationLabel_Tests.framework */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 26 | remoteInfo = TypeOutAnimationLabel; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 5318444278552AEA0F4BAB79 /* Pods-TypeOutAnimationLabel_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TypeOutAnimationLabel_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests.release.xcconfig"; sourceTree = ""; }; 32 | 592EEB8972255B209F06E1E3 /* Pods-TypeOutAnimationLabel_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TypeOutAnimationLabel_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example.release.xcconfig"; sourceTree = ""; }; 33 | 607FACD01AFB9204008FA782 /* TypeOutAnimationLabel_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TypeOutAnimationLabel_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 34 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 35 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 36 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 37 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 38 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 39 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 40 | 607FACE51AFB9204008FA782 /* TypeOutAnimationLabel_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TypeOutAnimationLabel_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 42 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 43 | 953832C79BE8B5DD8A2DCA27 /* Pods-TypeOutAnimationLabel_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TypeOutAnimationLabel_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example.debug.xcconfig"; sourceTree = ""; }; 44 | B03CAF7228DCA75F8196C453 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 45 | B6E47C0CC69534E140BC1E17 /* TypeOutAnimationLabel.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = TypeOutAnimationLabel.podspec; path = ../TypeOutAnimationLabel.podspec; sourceTree = ""; }; 46 | BDB0EFF7A44B7E661F902053 /* Pods-TypeOutAnimationLabel_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TypeOutAnimationLabel_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests.debug.xcconfig"; sourceTree = ""; }; 47 | DB75928DCE49F7EA8BC2A1F2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 48 | DBCFD670605C16781171DD75 /* Pods_TypeOutAnimationLabel_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TypeOutAnimationLabel_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | EC335F7E65C4A5A86F2CC0B4 /* Pods_TypeOutAnimationLabel_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TypeOutAnimationLabel_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | 5E02B5A6B4A3F6A6E5EEB616 /* Pods_TypeOutAnimationLabel_Example.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | E3FE4AF91B9ED1B34C0015CA /* Pods_TypeOutAnimationLabel_Tests.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXFrameworksBuildPhase section */ 70 | 71 | /* Begin PBXGroup section */ 72 | 607FACC71AFB9204008FA782 = { 73 | isa = PBXGroup; 74 | children = ( 75 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 76 | 607FACD21AFB9204008FA782 /* Example for TypeOutAnimationLabel */, 77 | 607FACE81AFB9204008FA782 /* Tests */, 78 | 607FACD11AFB9204008FA782 /* Products */, 79 | AFD0ACD5F88EDA5AEF86278B /* Pods */, 80 | BDFB1C19EB52CA324F2D76E0 /* Frameworks */, 81 | ); 82 | sourceTree = ""; 83 | }; 84 | 607FACD11AFB9204008FA782 /* Products */ = { 85 | isa = PBXGroup; 86 | children = ( 87 | 607FACD01AFB9204008FA782 /* TypeOutAnimationLabel_Example.app */, 88 | 607FACE51AFB9204008FA782 /* TypeOutAnimationLabel_Tests.xctest */, 89 | ); 90 | name = Products; 91 | sourceTree = ""; 92 | }; 93 | 607FACD21AFB9204008FA782 /* Example for TypeOutAnimationLabel */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 97 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 98 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 99 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 100 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 101 | 607FACD31AFB9204008FA782 /* Supporting Files */, 102 | ); 103 | name = "Example for TypeOutAnimationLabel"; 104 | path = TypeOutAnimationLabel; 105 | sourceTree = ""; 106 | }; 107 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | 607FACD41AFB9204008FA782 /* Info.plist */, 111 | ); 112 | name = "Supporting Files"; 113 | sourceTree = ""; 114 | }; 115 | 607FACE81AFB9204008FA782 /* Tests */ = { 116 | isa = PBXGroup; 117 | children = ( 118 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 119 | 607FACE91AFB9204008FA782 /* Supporting Files */, 120 | ); 121 | path = Tests; 122 | sourceTree = ""; 123 | }; 124 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 607FACEA1AFB9204008FA782 /* Info.plist */, 128 | ); 129 | name = "Supporting Files"; 130 | sourceTree = ""; 131 | }; 132 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 133 | isa = PBXGroup; 134 | children = ( 135 | B6E47C0CC69534E140BC1E17 /* TypeOutAnimationLabel.podspec */, 136 | DB75928DCE49F7EA8BC2A1F2 /* README.md */, 137 | B03CAF7228DCA75F8196C453 /* LICENSE */, 138 | ); 139 | name = "Podspec Metadata"; 140 | sourceTree = ""; 141 | }; 142 | AFD0ACD5F88EDA5AEF86278B /* Pods */ = { 143 | isa = PBXGroup; 144 | children = ( 145 | 953832C79BE8B5DD8A2DCA27 /* Pods-TypeOutAnimationLabel_Example.debug.xcconfig */, 146 | 592EEB8972255B209F06E1E3 /* Pods-TypeOutAnimationLabel_Example.release.xcconfig */, 147 | BDB0EFF7A44B7E661F902053 /* Pods-TypeOutAnimationLabel_Tests.debug.xcconfig */, 148 | 5318444278552AEA0F4BAB79 /* Pods-TypeOutAnimationLabel_Tests.release.xcconfig */, 149 | ); 150 | name = Pods; 151 | sourceTree = ""; 152 | }; 153 | BDFB1C19EB52CA324F2D76E0 /* Frameworks */ = { 154 | isa = PBXGroup; 155 | children = ( 156 | EC335F7E65C4A5A86F2CC0B4 /* Pods_TypeOutAnimationLabel_Example.framework */, 157 | DBCFD670605C16781171DD75 /* Pods_TypeOutAnimationLabel_Tests.framework */, 158 | ); 159 | name = Frameworks; 160 | sourceTree = ""; 161 | }; 162 | /* End PBXGroup section */ 163 | 164 | /* Begin PBXNativeTarget section */ 165 | 607FACCF1AFB9204008FA782 /* TypeOutAnimationLabel_Example */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TypeOutAnimationLabel_Example" */; 168 | buildPhases = ( 169 | AF0321102DD80CE9F5E45A18 /* Check Pods Manifest.lock */, 170 | 607FACCC1AFB9204008FA782 /* Sources */, 171 | 607FACCD1AFB9204008FA782 /* Frameworks */, 172 | 607FACCE1AFB9204008FA782 /* Resources */, 173 | C44183C43E6B7EB4A89ECB42 /* Embed Pods Frameworks */, 174 | 913D3F51641657757236D751 /* Copy Pods Resources */, 175 | ); 176 | buildRules = ( 177 | ); 178 | dependencies = ( 179 | ); 180 | name = TypeOutAnimationLabel_Example; 181 | productName = TypeOutAnimationLabel; 182 | productReference = 607FACD01AFB9204008FA782 /* TypeOutAnimationLabel_Example.app */; 183 | productType = "com.apple.product-type.application"; 184 | }; 185 | 607FACE41AFB9204008FA782 /* TypeOutAnimationLabel_Tests */ = { 186 | isa = PBXNativeTarget; 187 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TypeOutAnimationLabel_Tests" */; 188 | buildPhases = ( 189 | E8E53468EFDA5AE42A8D5E7B /* Check Pods Manifest.lock */, 190 | 607FACE11AFB9204008FA782 /* Sources */, 191 | 607FACE21AFB9204008FA782 /* Frameworks */, 192 | 607FACE31AFB9204008FA782 /* Resources */, 193 | 9ABF88E7E335F52FF9AB2D5D /* Embed Pods Frameworks */, 194 | C7AF4CDE0A4FEE4239C306F1 /* Copy Pods Resources */, 195 | ); 196 | buildRules = ( 197 | ); 198 | dependencies = ( 199 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 200 | ); 201 | name = TypeOutAnimationLabel_Tests; 202 | productName = Tests; 203 | productReference = 607FACE51AFB9204008FA782 /* TypeOutAnimationLabel_Tests.xctest */; 204 | productType = "com.apple.product-type.bundle.unit-test"; 205 | }; 206 | /* End PBXNativeTarget section */ 207 | 208 | /* Begin PBXProject section */ 209 | 607FACC81AFB9204008FA782 /* Project object */ = { 210 | isa = PBXProject; 211 | attributes = { 212 | LastSwiftUpdateCheck = 0720; 213 | LastUpgradeCheck = 0720; 214 | ORGANIZATIONNAME = CocoaPods; 215 | TargetAttributes = { 216 | 607FACCF1AFB9204008FA782 = { 217 | CreatedOnToolsVersion = 6.3.1; 218 | }; 219 | 607FACE41AFB9204008FA782 = { 220 | CreatedOnToolsVersion = 6.3.1; 221 | TestTargetID = 607FACCF1AFB9204008FA782; 222 | }; 223 | }; 224 | }; 225 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "TypeOutAnimationLabel" */; 226 | compatibilityVersion = "Xcode 3.2"; 227 | developmentRegion = English; 228 | hasScannedForEncodings = 0; 229 | knownRegions = ( 230 | en, 231 | Base, 232 | ); 233 | mainGroup = 607FACC71AFB9204008FA782; 234 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 235 | projectDirPath = ""; 236 | projectRoot = ""; 237 | targets = ( 238 | 607FACCF1AFB9204008FA782 /* TypeOutAnimationLabel_Example */, 239 | 607FACE41AFB9204008FA782 /* TypeOutAnimationLabel_Tests */, 240 | ); 241 | }; 242 | /* End PBXProject section */ 243 | 244 | /* Begin PBXResourcesBuildPhase section */ 245 | 607FACCE1AFB9204008FA782 /* Resources */ = { 246 | isa = PBXResourcesBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 250 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 251 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | }; 255 | 607FACE31AFB9204008FA782 /* Resources */ = { 256 | isa = PBXResourcesBuildPhase; 257 | buildActionMask = 2147483647; 258 | files = ( 259 | ); 260 | runOnlyForDeploymentPostprocessing = 0; 261 | }; 262 | /* End PBXResourcesBuildPhase section */ 263 | 264 | /* Begin PBXShellScriptBuildPhase section */ 265 | 913D3F51641657757236D751 /* Copy Pods Resources */ = { 266 | isa = PBXShellScriptBuildPhase; 267 | buildActionMask = 2147483647; 268 | files = ( 269 | ); 270 | inputPaths = ( 271 | ); 272 | name = "Copy Pods Resources"; 273 | outputPaths = ( 274 | ); 275 | runOnlyForDeploymentPostprocessing = 0; 276 | shellPath = /bin/sh; 277 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example-resources.sh\"\n"; 278 | showEnvVarsInLog = 0; 279 | }; 280 | 9ABF88E7E335F52FF9AB2D5D /* Embed Pods Frameworks */ = { 281 | isa = PBXShellScriptBuildPhase; 282 | buildActionMask = 2147483647; 283 | files = ( 284 | ); 285 | inputPaths = ( 286 | ); 287 | name = "Embed Pods Frameworks"; 288 | outputPaths = ( 289 | ); 290 | runOnlyForDeploymentPostprocessing = 0; 291 | shellPath = /bin/sh; 292 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests-frameworks.sh\"\n"; 293 | showEnvVarsInLog = 0; 294 | }; 295 | AF0321102DD80CE9F5E45A18 /* Check Pods Manifest.lock */ = { 296 | isa = PBXShellScriptBuildPhase; 297 | buildActionMask = 2147483647; 298 | files = ( 299 | ); 300 | inputPaths = ( 301 | ); 302 | name = "Check Pods Manifest.lock"; 303 | outputPaths = ( 304 | ); 305 | runOnlyForDeploymentPostprocessing = 0; 306 | shellPath = /bin/sh; 307 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 308 | showEnvVarsInLog = 0; 309 | }; 310 | C44183C43E6B7EB4A89ECB42 /* Embed Pods Frameworks */ = { 311 | isa = PBXShellScriptBuildPhase; 312 | buildActionMask = 2147483647; 313 | files = ( 314 | ); 315 | inputPaths = ( 316 | ); 317 | name = "Embed Pods Frameworks"; 318 | outputPaths = ( 319 | ); 320 | runOnlyForDeploymentPostprocessing = 0; 321 | shellPath = /bin/sh; 322 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Example/Pods-TypeOutAnimationLabel_Example-frameworks.sh\"\n"; 323 | showEnvVarsInLog = 0; 324 | }; 325 | C7AF4CDE0A4FEE4239C306F1 /* Copy Pods Resources */ = { 326 | isa = PBXShellScriptBuildPhase; 327 | buildActionMask = 2147483647; 328 | files = ( 329 | ); 330 | inputPaths = ( 331 | ); 332 | name = "Copy Pods Resources"; 333 | outputPaths = ( 334 | ); 335 | runOnlyForDeploymentPostprocessing = 0; 336 | shellPath = /bin/sh; 337 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-TypeOutAnimationLabel_Tests/Pods-TypeOutAnimationLabel_Tests-resources.sh\"\n"; 338 | showEnvVarsInLog = 0; 339 | }; 340 | E8E53468EFDA5AE42A8D5E7B /* Check Pods Manifest.lock */ = { 341 | isa = PBXShellScriptBuildPhase; 342 | buildActionMask = 2147483647; 343 | files = ( 344 | ); 345 | inputPaths = ( 346 | ); 347 | name = "Check Pods Manifest.lock"; 348 | outputPaths = ( 349 | ); 350 | runOnlyForDeploymentPostprocessing = 0; 351 | shellPath = /bin/sh; 352 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 353 | showEnvVarsInLog = 0; 354 | }; 355 | /* End PBXShellScriptBuildPhase section */ 356 | 357 | /* Begin PBXSourcesBuildPhase section */ 358 | 607FACCC1AFB9204008FA782 /* Sources */ = { 359 | isa = PBXSourcesBuildPhase; 360 | buildActionMask = 2147483647; 361 | files = ( 362 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 363 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 364 | ); 365 | runOnlyForDeploymentPostprocessing = 0; 366 | }; 367 | 607FACE11AFB9204008FA782 /* Sources */ = { 368 | isa = PBXSourcesBuildPhase; 369 | buildActionMask = 2147483647; 370 | files = ( 371 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 372 | ); 373 | runOnlyForDeploymentPostprocessing = 0; 374 | }; 375 | /* End PBXSourcesBuildPhase section */ 376 | 377 | /* Begin PBXTargetDependency section */ 378 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 379 | isa = PBXTargetDependency; 380 | target = 607FACCF1AFB9204008FA782 /* TypeOutAnimationLabel_Example */; 381 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 382 | }; 383 | /* End PBXTargetDependency section */ 384 | 385 | /* Begin PBXVariantGroup section */ 386 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 387 | isa = PBXVariantGroup; 388 | children = ( 389 | 607FACDA1AFB9204008FA782 /* Base */, 390 | ); 391 | name = Main.storyboard; 392 | sourceTree = ""; 393 | }; 394 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 395 | isa = PBXVariantGroup; 396 | children = ( 397 | 607FACDF1AFB9204008FA782 /* Base */, 398 | ); 399 | name = LaunchScreen.xib; 400 | sourceTree = ""; 401 | }; 402 | /* End PBXVariantGroup section */ 403 | 404 | /* Begin XCBuildConfiguration section */ 405 | 607FACED1AFB9204008FA782 /* Debug */ = { 406 | isa = XCBuildConfiguration; 407 | buildSettings = { 408 | ALWAYS_SEARCH_USER_PATHS = NO; 409 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 410 | CLANG_CXX_LIBRARY = "libc++"; 411 | CLANG_ENABLE_MODULES = YES; 412 | CLANG_ENABLE_OBJC_ARC = YES; 413 | CLANG_WARN_BOOL_CONVERSION = YES; 414 | CLANG_WARN_CONSTANT_CONVERSION = YES; 415 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 416 | CLANG_WARN_EMPTY_BODY = YES; 417 | CLANG_WARN_ENUM_CONVERSION = YES; 418 | CLANG_WARN_INT_CONVERSION = YES; 419 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 420 | CLANG_WARN_UNREACHABLE_CODE = YES; 421 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 422 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 423 | COPY_PHASE_STRIP = NO; 424 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 425 | ENABLE_STRICT_OBJC_MSGSEND = YES; 426 | ENABLE_TESTABILITY = YES; 427 | GCC_C_LANGUAGE_STANDARD = gnu99; 428 | GCC_DYNAMIC_NO_PIC = NO; 429 | GCC_NO_COMMON_BLOCKS = YES; 430 | GCC_OPTIMIZATION_LEVEL = 0; 431 | GCC_PREPROCESSOR_DEFINITIONS = ( 432 | "DEBUG=1", 433 | "$(inherited)", 434 | ); 435 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 436 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 437 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 438 | GCC_WARN_UNDECLARED_SELECTOR = YES; 439 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 440 | GCC_WARN_UNUSED_FUNCTION = YES; 441 | GCC_WARN_UNUSED_VARIABLE = YES; 442 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 443 | MTL_ENABLE_DEBUG_INFO = YES; 444 | ONLY_ACTIVE_ARCH = YES; 445 | SDKROOT = iphoneos; 446 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 447 | }; 448 | name = Debug; 449 | }; 450 | 607FACEE1AFB9204008FA782 /* Release */ = { 451 | isa = XCBuildConfiguration; 452 | buildSettings = { 453 | ALWAYS_SEARCH_USER_PATHS = NO; 454 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 455 | CLANG_CXX_LIBRARY = "libc++"; 456 | CLANG_ENABLE_MODULES = YES; 457 | CLANG_ENABLE_OBJC_ARC = YES; 458 | CLANG_WARN_BOOL_CONVERSION = YES; 459 | CLANG_WARN_CONSTANT_CONVERSION = YES; 460 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 461 | CLANG_WARN_EMPTY_BODY = YES; 462 | CLANG_WARN_ENUM_CONVERSION = YES; 463 | CLANG_WARN_INT_CONVERSION = YES; 464 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 465 | CLANG_WARN_UNREACHABLE_CODE = YES; 466 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 467 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 468 | COPY_PHASE_STRIP = NO; 469 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 470 | ENABLE_NS_ASSERTIONS = NO; 471 | ENABLE_STRICT_OBJC_MSGSEND = YES; 472 | GCC_C_LANGUAGE_STANDARD = gnu99; 473 | GCC_NO_COMMON_BLOCKS = YES; 474 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 475 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 476 | GCC_WARN_UNDECLARED_SELECTOR = YES; 477 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 478 | GCC_WARN_UNUSED_FUNCTION = YES; 479 | GCC_WARN_UNUSED_VARIABLE = YES; 480 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 481 | MTL_ENABLE_DEBUG_INFO = NO; 482 | SDKROOT = iphoneos; 483 | VALIDATE_PRODUCT = YES; 484 | }; 485 | name = Release; 486 | }; 487 | 607FACF01AFB9204008FA782 /* Debug */ = { 488 | isa = XCBuildConfiguration; 489 | baseConfigurationReference = 953832C79BE8B5DD8A2DCA27 /* Pods-TypeOutAnimationLabel_Example.debug.xcconfig */; 490 | buildSettings = { 491 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 492 | INFOPLIST_FILE = TypeOutAnimationLabel/Info.plist; 493 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 494 | MODULE_NAME = ExampleApp; 495 | PRODUCT_BUNDLE_IDENTIFIER = "com.bubui.demo.TypeOutAnimationLabel-Example"; 496 | PRODUCT_NAME = "$(TARGET_NAME)"; 497 | }; 498 | name = Debug; 499 | }; 500 | 607FACF11AFB9204008FA782 /* Release */ = { 501 | isa = XCBuildConfiguration; 502 | baseConfigurationReference = 592EEB8972255B209F06E1E3 /* Pods-TypeOutAnimationLabel_Example.release.xcconfig */; 503 | buildSettings = { 504 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 505 | INFOPLIST_FILE = TypeOutAnimationLabel/Info.plist; 506 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 507 | MODULE_NAME = ExampleApp; 508 | PRODUCT_BUNDLE_IDENTIFIER = "com.bubui.demo.TypeOutAnimationLabel-Example"; 509 | PRODUCT_NAME = "$(TARGET_NAME)"; 510 | }; 511 | name = Release; 512 | }; 513 | 607FACF31AFB9204008FA782 /* Debug */ = { 514 | isa = XCBuildConfiguration; 515 | baseConfigurationReference = BDB0EFF7A44B7E661F902053 /* Pods-TypeOutAnimationLabel_Tests.debug.xcconfig */; 516 | buildSettings = { 517 | FRAMEWORK_SEARCH_PATHS = ( 518 | "$(SDKROOT)/Developer/Library/Frameworks", 519 | "$(inherited)", 520 | ); 521 | GCC_PREPROCESSOR_DEFINITIONS = ( 522 | "DEBUG=1", 523 | "$(inherited)", 524 | ); 525 | INFOPLIST_FILE = Tests/Info.plist; 526 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 527 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 528 | PRODUCT_NAME = "$(TARGET_NAME)"; 529 | }; 530 | name = Debug; 531 | }; 532 | 607FACF41AFB9204008FA782 /* Release */ = { 533 | isa = XCBuildConfiguration; 534 | baseConfigurationReference = 5318444278552AEA0F4BAB79 /* Pods-TypeOutAnimationLabel_Tests.release.xcconfig */; 535 | buildSettings = { 536 | FRAMEWORK_SEARCH_PATHS = ( 537 | "$(SDKROOT)/Developer/Library/Frameworks", 538 | "$(inherited)", 539 | ); 540 | INFOPLIST_FILE = Tests/Info.plist; 541 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 542 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 543 | PRODUCT_NAME = "$(TARGET_NAME)"; 544 | }; 545 | name = Release; 546 | }; 547 | /* End XCBuildConfiguration section */ 548 | 549 | /* Begin XCConfigurationList section */ 550 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "TypeOutAnimationLabel" */ = { 551 | isa = XCConfigurationList; 552 | buildConfigurations = ( 553 | 607FACED1AFB9204008FA782 /* Debug */, 554 | 607FACEE1AFB9204008FA782 /* Release */, 555 | ); 556 | defaultConfigurationIsVisible = 0; 557 | defaultConfigurationName = Release; 558 | }; 559 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TypeOutAnimationLabel_Example" */ = { 560 | isa = XCConfigurationList; 561 | buildConfigurations = ( 562 | 607FACF01AFB9204008FA782 /* Debug */, 563 | 607FACF11AFB9204008FA782 /* Release */, 564 | ); 565 | defaultConfigurationIsVisible = 0; 566 | defaultConfigurationName = Release; 567 | }; 568 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TypeOutAnimationLabel_Tests" */ = { 569 | isa = XCConfigurationList; 570 | buildConfigurations = ( 571 | 607FACF31AFB9204008FA782 /* Debug */, 572 | 607FACF41AFB9204008FA782 /* Release */, 573 | ); 574 | defaultConfigurationIsVisible = 0; 575 | defaultConfigurationName = Release; 576 | }; 577 | /* End XCConfigurationList section */ 578 | }; 579 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 580 | } 581 | -------------------------------------------------------------------------------- /Example/TypeOutAnimationLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/TypeOutAnimationLabel.xcodeproj/xcshareddata/xcschemes/TypeOutAnimationLabel-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 80 | 86 | 87 | 88 | 89 | 90 | 91 | 97 | 99 | 105 | 106 | 107 | 108 | 110 | 111 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Example/TypeOutAnimationLabel.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/TypeOutAnimationLabel/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // TypeOutAnimationLabel 4 | // 5 | // Created by Buu Bui on 04/22/2016. 6 | // Copyright (c) 2016 Buu Bui. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/TypeOutAnimationLabel/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /Example/TypeOutAnimationLabel/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 26 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/TypeOutAnimationLabel/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Example/TypeOutAnimationLabel/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example/TypeOutAnimationLabel/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // TypeOutAnimationLabel 4 | // 5 | // Created by Buu Bui on 04/22/2016. 6 | // Copyright (c) 2016 Buu Bui. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import TypeOutAnimationLabel 11 | class ViewController: UIViewController { 12 | 13 | @IBOutlet weak var label: TypeOutAnimationLabel! 14 | @IBOutlet weak var subtitleLabel: UILabel! 15 | 16 | override func viewDidLoad() { 17 | super.viewDidLoad() 18 | self.subtitleLabel.alpha = 0 19 | } 20 | 21 | override func viewDidAppear(animated: Bool) { 22 | super.viewDidAppear(animated) 23 | NSTimer.scheduledTimerWithTimeInterval(3, target: self, selector: #selector(ViewController.start), userInfo: nil, repeats: false) 24 | } 25 | 26 | func start() { 27 | let font = UIFont.systemFontOfSize(20) 28 | let fixedString = NSAttributedString(string: "San Francisco is ", attributes: [NSForegroundColorAttributeName: UIColor(red: 0.38, green: 0.388, blue: 0.404, alpha: 1), NSFontAttributeName: font]) 29 | 30 | let replacableStrings = ["amazing", "beautiful", "different", "an experience."].map { text -> NSAttributedString in 31 | return NSAttributedString(string: text, attributes: [NSForegroundColorAttributeName: UIColor(red: 0.396, green: 0.82, blue: 0.396, alpha: 1), NSFontAttributeName: font]) 32 | } 33 | 34 | label.animationWithFixedString(fixedString, replacableStrings: replacableStrings, typeSpeed: 0.1, delay: 2) { 35 | UIView.animateWithDuration(1) { 36 | self.subtitleLabel.alpha = 1 37 | } 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016 Buu Bui 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TypeOutAnimationLabel 2 | 3 | An UILabel with type out animation, inspired from [https://connoratherton.com/typeout](https://connoratherton.com/typeout) 4 | 5 | ## Usage 6 | 7 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 8 | 9 | ## Screenshot 10 | ![](https://cloud.githubusercontent.com/assets/5128246/14739286/cd08d298-08b0-11e6-8380-b1b81dc368ad.gif) 11 | 12 | ## Installation 13 | 14 | TypeOutAnimationLabel is available through [CocoaPods](http://cocoapods.org). To install 15 | it, simply add the following line to your Podfile: 16 | 17 | ```ruby 18 | pod "TypeOutAnimationLabel" 19 | ``` 20 | 21 | ## Author 22 | 23 | Buu Bui 24 | 25 | ## License 26 | 27 | TypeOutAnimationLabel is available under the MIT license. See the LICENSE file for more info. 28 | -------------------------------------------------------------------------------- /TypeOutAnimationLabel.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint TypeOutAnimationLabel.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = "TypeOutAnimationLabel" 11 | s.version = "0.1.0" 12 | s.summary = "An UILabel with type out animation, inspired from https://connoratherton.com/typeout" 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 | DESC 22 | 23 | s.homepage = "https://github.com/buubui/TypeOutAnimationLabel" 24 | s.screenshots = "https://cloud.githubusercontent.com/assets/5128246/14739286/cd08d298-08b0-11e6-8380-b1b81dc368ad.gif" 25 | s.license = 'MIT' 26 | s.author = { "Buu Bui" => "github.com/buubui" } 27 | s.source = { :git => "https://github.com/buubui/TypeOutAnimationLabel.git", :tag => s.version.to_s } 28 | 29 | s.ios.deployment_target = '8.0' 30 | 31 | s.source_files = 'TypeOutAnimationLabel/Classes/**/*' 32 | s.resource_bundles = { 33 | 'TypeOutAnimationLabel' => ['TypeOutAnimationLabel/Assets/*.png'] 34 | } 35 | 36 | # s.public_header_files = 'Pod/Classes/**/*.h' 37 | # s.frameworks = 'UIKit', 'MapKit' 38 | # s.dependency 'AFNetworking', '~> 2.3' 39 | end 40 | -------------------------------------------------------------------------------- /TypeOutAnimationLabel/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buubui/TypeOutAnimationLabel/df19278422a5a8375d9c6c54ce7d0a85d24b228e/TypeOutAnimationLabel/Assets/.gitkeep -------------------------------------------------------------------------------- /TypeOutAnimationLabel/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buubui/TypeOutAnimationLabel/df19278422a5a8375d9c6c54ce7d0a85d24b228e/TypeOutAnimationLabel/Classes/.gitkeep -------------------------------------------------------------------------------- /TypeOutAnimationLabel/Classes/TypeOutAnimationLabel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TypeOutAnimationLabel.swift 3 | // Pods 4 | // 5 | // Created by Buu Bui on 4/22/16. 6 | // 7 | // 8 | 9 | import UIKit 10 | 11 | public class TypeOutAnimationLabel: UILabel { 12 | enum Status: Int { 13 | case Forward, Backward 14 | } 15 | var canBackward: Bool { 16 | return currentReplacableIndex < replacableStrings.count - 1 17 | } 18 | 19 | private var fixedString = NSAttributedString() 20 | private var replacableStrings = [NSAttributedString]() 21 | private var currentReplacableIndex = 0 22 | 23 | private var fixedChars = [String]() 24 | private var currentReplacableChars = [String]() 25 | private var status: Status = .Forward 26 | private var currentIndex = 0 27 | private var currentLength = 0 28 | 29 | private func reset() { 30 | fixedChars = fixedString.string.characters.map {String($0)} 31 | currentReplacableIndex = 0 32 | currentIndex = 0 33 | initReplacableStringAtIndex(currentReplacableIndex) 34 | } 35 | 36 | private func initReplacableStringAtIndex(index: Int) { 37 | currentReplacableChars = replacableStrings[index].string.characters.map {String($0)} 38 | status = .Forward 39 | currentLength = fixedChars.count + currentReplacableChars.count 40 | } 41 | 42 | func next() { 43 | switch status { 44 | case .Forward: 45 | currentIndex += 1 46 | if canBackward && currentIndex > currentLength { 47 | currentIndex -= 2 48 | status = .Backward 49 | } 50 | case .Backward: 51 | if currentIndex >= fixedChars.count { 52 | currentIndex -= 1 53 | } else { 54 | currentReplacableIndex += 1 55 | initReplacableStringAtIndex(currentReplacableIndex) 56 | } 57 | } 58 | } 59 | 60 | func canAnimateNext() -> Bool { 61 | switch status { 62 | case .Backward: 63 | if currentReplacableIndex == replacableStrings.count - 1 { 64 | return currentIndex <= fixedChars.count 65 | } 66 | return true 67 | default: 68 | return canBackward ? true : currentIndex <= currentLength 69 | } 70 | } 71 | 72 | var currentFixedString: NSAttributedString { 73 | let index = [currentIndex, fixedChars.count].minElement()! 74 | return fixedString.attributedSubstringFromRange(NSRange(location: 0, length: index)) 75 | } 76 | 77 | var currentReplacableString: NSAttributedString? { 78 | let index = [currentIndex + 1 - fixedChars.count, currentReplacableChars.count].minElement()! 79 | if index <= 0 { 80 | return nil 81 | } 82 | 83 | return replacableStrings[currentReplacableIndex].attributedSubstringFromRange(NSRange(location: 0, length: index)) 84 | } 85 | 86 | func computeText() -> NSAttributedString { 87 | let text = NSMutableAttributedString(attributedString: currentFixedString) 88 | if let replacableString = currentReplacableString { 89 | text.appendAttributedString(replacableString) 90 | } 91 | return text 92 | } 93 | 94 | override public func drawRect(rect: CGRect) { 95 | attributedText = computeText() 96 | super.drawRect(rect) 97 | } 98 | 99 | public func animationWithFixedString(fixedString: NSAttributedString, replacableStrings: [NSAttributedString], typeSpeed: NSTimeInterval, delay: NSTimeInterval, completion: (() -> Void)?) { 100 | self.fixedString = fixedString 101 | self.replacableStrings = replacableStrings 102 | reset() 103 | animation(typeSpeed: typeSpeed, delay: delay, completion: completion) 104 | } 105 | 106 | func animation(typeSpeed typeSpeed: NSTimeInterval, delay: NSTimeInterval, completion: (() -> Void)?) { 107 | if currentIndex == fixedChars.count && status == .Forward { 108 | NSThread.sleepForTimeInterval(delay) 109 | } 110 | UIView.animateWithDuration(typeSpeed, delay: delay, options: .CurveEaseInOut, animations: { 111 | self.setNeedsDisplay() 112 | }) { _ in 113 | NSThread.sleepForTimeInterval(typeSpeed) 114 | self.next() 115 | if self.canAnimateNext() { 116 | self.animation(typeSpeed: typeSpeed, delay: delay, completion: completion) 117 | } else { 118 | completion?() 119 | } 120 | } 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------