├── .gitignore ├── .travis.yml ├── Example ├── JBTabBarAnimation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── JBTabBarAnimation-Example.xcscheme ├── JBTabBarAnimation.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── JBTabBarAnimation │ ├── Animation.gif │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Screen_Shot_1.png │ ├── Screen_Shot_2.png │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── JBTabBarAnimation.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── JBTabBarAnimation │ │ ├── JBTabBarAnimation-Info.plist │ │ ├── JBTabBarAnimation-dummy.m │ │ ├── JBTabBarAnimation-prefix.pch │ │ ├── JBTabBarAnimation-umbrella.h │ │ ├── JBTabBarAnimation.modulemap │ │ └── JBTabBarAnimation.xcconfig │ │ ├── Pods-JBTabBarAnimation_Example │ │ ├── Pods-JBTabBarAnimation_Example-Info.plist │ │ ├── Pods-JBTabBarAnimation_Example-acknowledgements.markdown │ │ ├── Pods-JBTabBarAnimation_Example-acknowledgements.plist │ │ ├── Pods-JBTabBarAnimation_Example-dummy.m │ │ ├── Pods-JBTabBarAnimation_Example-frameworks.sh │ │ ├── Pods-JBTabBarAnimation_Example-umbrella.h │ │ ├── Pods-JBTabBarAnimation_Example.debug.xcconfig │ │ ├── Pods-JBTabBarAnimation_Example.modulemap │ │ └── Pods-JBTabBarAnimation_Example.release.xcconfig │ │ └── Pods-JBTabBarAnimation_Tests │ │ ├── Pods-JBTabBarAnimation_Tests-Info.plist │ │ ├── Pods-JBTabBarAnimation_Tests-acknowledgements.markdown │ │ ├── Pods-JBTabBarAnimation_Tests-acknowledgements.plist │ │ ├── Pods-JBTabBarAnimation_Tests-dummy.m │ │ ├── Pods-JBTabBarAnimation_Tests-umbrella.h │ │ ├── Pods-JBTabBarAnimation_Tests.debug.xcconfig │ │ ├── Pods-JBTabBarAnimation_Tests.modulemap │ │ └── Pods-JBTabBarAnimation_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── JBTabBarAnimation.podspec ├── JBTabBarAnimation ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── CircleLayer.swift │ ├── JBTabBar.swift │ └── JBTabBarController.swift ├── LICENSE ├── README.md └── _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 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 26 | # Carthage/Checkouts 27 | 28 | Carthage/Build 29 | 30 | # We recommend against adding the Pods directory to your .gitignore. However 31 | # you should judge for yourself, the pros and cons are mentioned at: 32 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 33 | # 34 | # Note: if you ignore the Pods directory, make sure to uncomment 35 | # `pod install` in .travis.yml 36 | # 37 | # Pods/ 38 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * https://www.objc.io/issues/6-build-tools/travis-ci/ 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/JBTabBarAnimation.xcworkspace -scheme JBTabBarAnimation-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/JBTabBarAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 22978D31227AC36100278733 /* Animation.gif in Resources */ = {isa = PBXBuildFile; fileRef = 22978D2E227AC36100278733 /* Animation.gif */; }; 11 | 22978D32227AC36100278733 /* Screen_Shot_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 22978D2F227AC36100278733 /* Screen_Shot_1.png */; }; 12 | 22978D33227AC36100278733 /* Screen_Shot_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 22978D30227AC36100278733 /* Screen_Shot_2.png */; }; 13 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 14 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 15 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 16 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 17 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 18 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 19 | B851A08A34D86B91DE4DDB71 /* Pods_JBTabBarAnimation_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 433923E8926BF43167DD3AFE /* Pods_JBTabBarAnimation_Tests.framework */; }; 20 | DF8A8B4794A7F8484E5631B5 /* Pods_JBTabBarAnimation_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 155F223205617682E4BDF736 /* Pods_JBTabBarAnimation_Example.framework */; }; 21 | /* End PBXBuildFile section */ 22 | 23 | /* Begin PBXContainerItemProxy section */ 24 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 25 | isa = PBXContainerItemProxy; 26 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 27 | proxyType = 1; 28 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 29 | remoteInfo = JBTabBarAnimation; 30 | }; 31 | /* End PBXContainerItemProxy section */ 32 | 33 | /* Begin PBXFileReference section */ 34 | 09C4468A565B99A51AB27695 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 35 | 0D493D341AB697647F0803FF /* Pods-JBTabBarAnimation_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JBTabBarAnimation_Tests.debug.xcconfig"; path = "Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests.debug.xcconfig"; sourceTree = ""; }; 36 | 155F223205617682E4BDF736 /* Pods_JBTabBarAnimation_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_JBTabBarAnimation_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 37 | 22978D2E227AC36100278733 /* Animation.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = Animation.gif; sourceTree = ""; }; 38 | 22978D2F227AC36100278733 /* Screen_Shot_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Screen_Shot_1.png; sourceTree = ""; }; 39 | 22978D30227AC36100278733 /* Screen_Shot_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Screen_Shot_2.png; sourceTree = ""; }; 40 | 433923E8926BF43167DD3AFE /* Pods_JBTabBarAnimation_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_JBTabBarAnimation_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 46DCAF8E2A28922863912383 /* JBTabBarAnimation.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = JBTabBarAnimation.podspec; path = ../JBTabBarAnimation.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 42 | 607FACD01AFB9204008FA782 /* JBTabBarAnimation_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = JBTabBarAnimation_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 44 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 45 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 46 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 47 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 48 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 49 | 607FACE51AFB9204008FA782 /* JBTabBarAnimation_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = JBTabBarAnimation_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 51 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 52 | 740FE63ECD6E65C0BDBF6ADD /* Pods-JBTabBarAnimation_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JBTabBarAnimation_Tests.release.xcconfig"; path = "Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests.release.xcconfig"; sourceTree = ""; }; 53 | 7B2C5B876B2193F1DA54CF54 /* Pods-JBTabBarAnimation_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JBTabBarAnimation_Example.release.xcconfig"; path = "Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example.release.xcconfig"; sourceTree = ""; }; 54 | 9F66E09055D05261ED1CABC3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 55 | CB6D8A2CA924D596CF22CC7B /* Pods-JBTabBarAnimation_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JBTabBarAnimation_Example.debug.xcconfig"; path = "Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example.debug.xcconfig"; sourceTree = ""; }; 56 | /* End PBXFileReference section */ 57 | 58 | /* Begin PBXFrameworksBuildPhase section */ 59 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 60 | isa = PBXFrameworksBuildPhase; 61 | buildActionMask = 2147483647; 62 | files = ( 63 | DF8A8B4794A7F8484E5631B5 /* Pods_JBTabBarAnimation_Example.framework in Frameworks */, 64 | ); 65 | runOnlyForDeploymentPostprocessing = 0; 66 | }; 67 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 68 | isa = PBXFrameworksBuildPhase; 69 | buildActionMask = 2147483647; 70 | files = ( 71 | B851A08A34D86B91DE4DDB71 /* Pods_JBTabBarAnimation_Tests.framework in Frameworks */, 72 | ); 73 | runOnlyForDeploymentPostprocessing = 0; 74 | }; 75 | /* End PBXFrameworksBuildPhase section */ 76 | 77 | /* Begin PBXGroup section */ 78 | 22978D2D227AC2EE00278733 /* Screen shots */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | 22978D2E227AC36100278733 /* Animation.gif */, 82 | 22978D2F227AC36100278733 /* Screen_Shot_1.png */, 83 | 22978D30227AC36100278733 /* Screen_Shot_2.png */, 84 | ); 85 | name = "Screen shots"; 86 | sourceTree = ""; 87 | }; 88 | 607FACC71AFB9204008FA782 = { 89 | isa = PBXGroup; 90 | children = ( 91 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 92 | 607FACD21AFB9204008FA782 /* Example for JBTabBarAnimation */, 93 | 607FACE81AFB9204008FA782 /* Tests */, 94 | 607FACD11AFB9204008FA782 /* Products */, 95 | 873E1706E315E53C3F699D5A /* Pods */, 96 | 714126EFD09AED32DE2DE03C /* Frameworks */, 97 | ); 98 | sourceTree = ""; 99 | }; 100 | 607FACD11AFB9204008FA782 /* Products */ = { 101 | isa = PBXGroup; 102 | children = ( 103 | 607FACD01AFB9204008FA782 /* JBTabBarAnimation_Example.app */, 104 | 607FACE51AFB9204008FA782 /* JBTabBarAnimation_Tests.xctest */, 105 | ); 106 | name = Products; 107 | sourceTree = ""; 108 | }; 109 | 607FACD21AFB9204008FA782 /* Example for JBTabBarAnimation */ = { 110 | isa = PBXGroup; 111 | children = ( 112 | 22978D2D227AC2EE00278733 /* Screen shots */, 113 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 114 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 115 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 116 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 117 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 118 | 607FACD31AFB9204008FA782 /* Supporting Files */, 119 | ); 120 | name = "Example for JBTabBarAnimation"; 121 | path = JBTabBarAnimation; 122 | sourceTree = ""; 123 | }; 124 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 607FACD41AFB9204008FA782 /* Info.plist */, 128 | ); 129 | name = "Supporting Files"; 130 | sourceTree = ""; 131 | }; 132 | 607FACE81AFB9204008FA782 /* Tests */ = { 133 | isa = PBXGroup; 134 | children = ( 135 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 136 | 607FACE91AFB9204008FA782 /* Supporting Files */, 137 | ); 138 | path = Tests; 139 | sourceTree = ""; 140 | }; 141 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 142 | isa = PBXGroup; 143 | children = ( 144 | 607FACEA1AFB9204008FA782 /* Info.plist */, 145 | ); 146 | name = "Supporting Files"; 147 | sourceTree = ""; 148 | }; 149 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 150 | isa = PBXGroup; 151 | children = ( 152 | 46DCAF8E2A28922863912383 /* JBTabBarAnimation.podspec */, 153 | 09C4468A565B99A51AB27695 /* README.md */, 154 | 9F66E09055D05261ED1CABC3 /* LICENSE */, 155 | ); 156 | name = "Podspec Metadata"; 157 | sourceTree = ""; 158 | }; 159 | 714126EFD09AED32DE2DE03C /* Frameworks */ = { 160 | isa = PBXGroup; 161 | children = ( 162 | 155F223205617682E4BDF736 /* Pods_JBTabBarAnimation_Example.framework */, 163 | 433923E8926BF43167DD3AFE /* Pods_JBTabBarAnimation_Tests.framework */, 164 | ); 165 | name = Frameworks; 166 | sourceTree = ""; 167 | }; 168 | 873E1706E315E53C3F699D5A /* Pods */ = { 169 | isa = PBXGroup; 170 | children = ( 171 | CB6D8A2CA924D596CF22CC7B /* Pods-JBTabBarAnimation_Example.debug.xcconfig */, 172 | 7B2C5B876B2193F1DA54CF54 /* Pods-JBTabBarAnimation_Example.release.xcconfig */, 173 | 0D493D341AB697647F0803FF /* Pods-JBTabBarAnimation_Tests.debug.xcconfig */, 174 | 740FE63ECD6E65C0BDBF6ADD /* Pods-JBTabBarAnimation_Tests.release.xcconfig */, 175 | ); 176 | path = Pods; 177 | sourceTree = ""; 178 | }; 179 | /* End PBXGroup section */ 180 | 181 | /* Begin PBXNativeTarget section */ 182 | 607FACCF1AFB9204008FA782 /* JBTabBarAnimation_Example */ = { 183 | isa = PBXNativeTarget; 184 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "JBTabBarAnimation_Example" */; 185 | buildPhases = ( 186 | 372F141FAD4D6D350934BB23 /* [CP] Check Pods Manifest.lock */, 187 | 607FACCC1AFB9204008FA782 /* Sources */, 188 | 607FACCD1AFB9204008FA782 /* Frameworks */, 189 | 607FACCE1AFB9204008FA782 /* Resources */, 190 | 4A823CA1CD90B1B7EF0C7F79 /* [CP] Embed Pods Frameworks */, 191 | ); 192 | buildRules = ( 193 | ); 194 | dependencies = ( 195 | ); 196 | name = JBTabBarAnimation_Example; 197 | productName = JBTabBarAnimation; 198 | productReference = 607FACD01AFB9204008FA782 /* JBTabBarAnimation_Example.app */; 199 | productType = "com.apple.product-type.application"; 200 | }; 201 | 607FACE41AFB9204008FA782 /* JBTabBarAnimation_Tests */ = { 202 | isa = PBXNativeTarget; 203 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "JBTabBarAnimation_Tests" */; 204 | buildPhases = ( 205 | EBDADCE7E065FC50FE67B970 /* [CP] Check Pods Manifest.lock */, 206 | 607FACE11AFB9204008FA782 /* Sources */, 207 | 607FACE21AFB9204008FA782 /* Frameworks */, 208 | 607FACE31AFB9204008FA782 /* Resources */, 209 | ); 210 | buildRules = ( 211 | ); 212 | dependencies = ( 213 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 214 | ); 215 | name = JBTabBarAnimation_Tests; 216 | productName = Tests; 217 | productReference = 607FACE51AFB9204008FA782 /* JBTabBarAnimation_Tests.xctest */; 218 | productType = "com.apple.product-type.bundle.unit-test"; 219 | }; 220 | /* End PBXNativeTarget section */ 221 | 222 | /* Begin PBXProject section */ 223 | 607FACC81AFB9204008FA782 /* Project object */ = { 224 | isa = PBXProject; 225 | attributes = { 226 | LastSwiftUpdateCheck = 0830; 227 | LastUpgradeCheck = 0830; 228 | ORGANIZATIONNAME = CocoaPods; 229 | TargetAttributes = { 230 | 607FACCF1AFB9204008FA782 = { 231 | CreatedOnToolsVersion = 6.3.1; 232 | LastSwiftMigration = 0900; 233 | }; 234 | 607FACE41AFB9204008FA782 = { 235 | CreatedOnToolsVersion = 6.3.1; 236 | LastSwiftMigration = 0900; 237 | TestTargetID = 607FACCF1AFB9204008FA782; 238 | }; 239 | }; 240 | }; 241 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "JBTabBarAnimation" */; 242 | compatibilityVersion = "Xcode 3.2"; 243 | developmentRegion = English; 244 | hasScannedForEncodings = 0; 245 | knownRegions = ( 246 | en, 247 | Base, 248 | ); 249 | mainGroup = 607FACC71AFB9204008FA782; 250 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 251 | projectDirPath = ""; 252 | projectRoot = ""; 253 | targets = ( 254 | 607FACCF1AFB9204008FA782 /* JBTabBarAnimation_Example */, 255 | 607FACE41AFB9204008FA782 /* JBTabBarAnimation_Tests */, 256 | ); 257 | }; 258 | /* End PBXProject section */ 259 | 260 | /* Begin PBXResourcesBuildPhase section */ 261 | 607FACCE1AFB9204008FA782 /* Resources */ = { 262 | isa = PBXResourcesBuildPhase; 263 | buildActionMask = 2147483647; 264 | files = ( 265 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 266 | 22978D32227AC36100278733 /* Screen_Shot_1.png in Resources */, 267 | 22978D31227AC36100278733 /* Animation.gif in Resources */, 268 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 269 | 22978D33227AC36100278733 /* Screen_Shot_2.png in Resources */, 270 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 271 | ); 272 | runOnlyForDeploymentPostprocessing = 0; 273 | }; 274 | 607FACE31AFB9204008FA782 /* Resources */ = { 275 | isa = PBXResourcesBuildPhase; 276 | buildActionMask = 2147483647; 277 | files = ( 278 | ); 279 | runOnlyForDeploymentPostprocessing = 0; 280 | }; 281 | /* End PBXResourcesBuildPhase section */ 282 | 283 | /* Begin PBXShellScriptBuildPhase section */ 284 | 372F141FAD4D6D350934BB23 /* [CP] Check Pods Manifest.lock */ = { 285 | isa = PBXShellScriptBuildPhase; 286 | buildActionMask = 2147483647; 287 | files = ( 288 | ); 289 | inputFileListPaths = ( 290 | ); 291 | inputPaths = ( 292 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 293 | "${PODS_ROOT}/Manifest.lock", 294 | ); 295 | name = "[CP] Check Pods Manifest.lock"; 296 | outputFileListPaths = ( 297 | ); 298 | outputPaths = ( 299 | "$(DERIVED_FILE_DIR)/Pods-JBTabBarAnimation_Example-checkManifestLockResult.txt", 300 | ); 301 | runOnlyForDeploymentPostprocessing = 0; 302 | shellPath = /bin/sh; 303 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 304 | showEnvVarsInLog = 0; 305 | }; 306 | 4A823CA1CD90B1B7EF0C7F79 /* [CP] Embed Pods Frameworks */ = { 307 | isa = PBXShellScriptBuildPhase; 308 | buildActionMask = 2147483647; 309 | files = ( 310 | ); 311 | inputFileListPaths = ( 312 | ); 313 | inputPaths = ( 314 | "${PODS_ROOT}/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-frameworks.sh", 315 | "${BUILT_PRODUCTS_DIR}/JBTabBarAnimation/JBTabBarAnimation.framework", 316 | ); 317 | name = "[CP] Embed Pods Frameworks"; 318 | outputFileListPaths = ( 319 | ); 320 | outputPaths = ( 321 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JBTabBarAnimation.framework", 322 | ); 323 | runOnlyForDeploymentPostprocessing = 0; 324 | shellPath = /bin/sh; 325 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-frameworks.sh\"\n"; 326 | showEnvVarsInLog = 0; 327 | }; 328 | EBDADCE7E065FC50FE67B970 /* [CP] Check Pods Manifest.lock */ = { 329 | isa = PBXShellScriptBuildPhase; 330 | buildActionMask = 2147483647; 331 | files = ( 332 | ); 333 | inputFileListPaths = ( 334 | ); 335 | inputPaths = ( 336 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 337 | "${PODS_ROOT}/Manifest.lock", 338 | ); 339 | name = "[CP] Check Pods Manifest.lock"; 340 | outputFileListPaths = ( 341 | ); 342 | outputPaths = ( 343 | "$(DERIVED_FILE_DIR)/Pods-JBTabBarAnimation_Tests-checkManifestLockResult.txt", 344 | ); 345 | runOnlyForDeploymentPostprocessing = 0; 346 | shellPath = /bin/sh; 347 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 348 | showEnvVarsInLog = 0; 349 | }; 350 | /* End PBXShellScriptBuildPhase section */ 351 | 352 | /* Begin PBXSourcesBuildPhase section */ 353 | 607FACCC1AFB9204008FA782 /* Sources */ = { 354 | isa = PBXSourcesBuildPhase; 355 | buildActionMask = 2147483647; 356 | files = ( 357 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 358 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 359 | ); 360 | runOnlyForDeploymentPostprocessing = 0; 361 | }; 362 | 607FACE11AFB9204008FA782 /* Sources */ = { 363 | isa = PBXSourcesBuildPhase; 364 | buildActionMask = 2147483647; 365 | files = ( 366 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 367 | ); 368 | runOnlyForDeploymentPostprocessing = 0; 369 | }; 370 | /* End PBXSourcesBuildPhase section */ 371 | 372 | /* Begin PBXTargetDependency section */ 373 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 374 | isa = PBXTargetDependency; 375 | target = 607FACCF1AFB9204008FA782 /* JBTabBarAnimation_Example */; 376 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 377 | }; 378 | /* End PBXTargetDependency section */ 379 | 380 | /* Begin PBXVariantGroup section */ 381 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 382 | isa = PBXVariantGroup; 383 | children = ( 384 | 607FACDA1AFB9204008FA782 /* Base */, 385 | ); 386 | name = Main.storyboard; 387 | sourceTree = ""; 388 | }; 389 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 390 | isa = PBXVariantGroup; 391 | children = ( 392 | 607FACDF1AFB9204008FA782 /* Base */, 393 | ); 394 | name = LaunchScreen.xib; 395 | sourceTree = ""; 396 | }; 397 | /* End PBXVariantGroup section */ 398 | 399 | /* Begin XCBuildConfiguration section */ 400 | 607FACED1AFB9204008FA782 /* Debug */ = { 401 | isa = XCBuildConfiguration; 402 | buildSettings = { 403 | ALWAYS_SEARCH_USER_PATHS = NO; 404 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 405 | CLANG_CXX_LIBRARY = "libc++"; 406 | CLANG_ENABLE_MODULES = YES; 407 | CLANG_ENABLE_OBJC_ARC = YES; 408 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 409 | CLANG_WARN_BOOL_CONVERSION = YES; 410 | CLANG_WARN_COMMA = YES; 411 | CLANG_WARN_CONSTANT_CONVERSION = YES; 412 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 413 | CLANG_WARN_EMPTY_BODY = YES; 414 | CLANG_WARN_ENUM_CONVERSION = YES; 415 | CLANG_WARN_INFINITE_RECURSION = YES; 416 | CLANG_WARN_INT_CONVERSION = YES; 417 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 418 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 419 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 420 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 421 | CLANG_WARN_STRICT_PROTOTYPES = YES; 422 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 423 | CLANG_WARN_UNREACHABLE_CODE = YES; 424 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 425 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 426 | COPY_PHASE_STRIP = NO; 427 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 428 | ENABLE_STRICT_OBJC_MSGSEND = YES; 429 | ENABLE_TESTABILITY = YES; 430 | GCC_C_LANGUAGE_STANDARD = gnu99; 431 | GCC_DYNAMIC_NO_PIC = NO; 432 | GCC_NO_COMMON_BLOCKS = YES; 433 | GCC_OPTIMIZATION_LEVEL = 0; 434 | GCC_PREPROCESSOR_DEFINITIONS = ( 435 | "DEBUG=1", 436 | "$(inherited)", 437 | ); 438 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 439 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 440 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 441 | GCC_WARN_UNDECLARED_SELECTOR = YES; 442 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 443 | GCC_WARN_UNUSED_FUNCTION = YES; 444 | GCC_WARN_UNUSED_VARIABLE = YES; 445 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 446 | MTL_ENABLE_DEBUG_INFO = YES; 447 | ONLY_ACTIVE_ARCH = YES; 448 | SDKROOT = iphoneos; 449 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 450 | SWIFT_VERSION = 4.2; 451 | }; 452 | name = Debug; 453 | }; 454 | 607FACEE1AFB9204008FA782 /* Release */ = { 455 | isa = XCBuildConfiguration; 456 | buildSettings = { 457 | ALWAYS_SEARCH_USER_PATHS = NO; 458 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 459 | CLANG_CXX_LIBRARY = "libc++"; 460 | CLANG_ENABLE_MODULES = YES; 461 | CLANG_ENABLE_OBJC_ARC = YES; 462 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 463 | CLANG_WARN_BOOL_CONVERSION = YES; 464 | CLANG_WARN_COMMA = YES; 465 | CLANG_WARN_CONSTANT_CONVERSION = YES; 466 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 467 | CLANG_WARN_EMPTY_BODY = YES; 468 | CLANG_WARN_ENUM_CONVERSION = YES; 469 | CLANG_WARN_INFINITE_RECURSION = YES; 470 | CLANG_WARN_INT_CONVERSION = YES; 471 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 472 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 473 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 474 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 475 | CLANG_WARN_STRICT_PROTOTYPES = YES; 476 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 477 | CLANG_WARN_UNREACHABLE_CODE = YES; 478 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 479 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 480 | COPY_PHASE_STRIP = NO; 481 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 482 | ENABLE_NS_ASSERTIONS = NO; 483 | ENABLE_STRICT_OBJC_MSGSEND = YES; 484 | GCC_C_LANGUAGE_STANDARD = gnu99; 485 | GCC_NO_COMMON_BLOCKS = YES; 486 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 487 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 488 | GCC_WARN_UNDECLARED_SELECTOR = YES; 489 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 490 | GCC_WARN_UNUSED_FUNCTION = YES; 491 | GCC_WARN_UNUSED_VARIABLE = YES; 492 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 493 | MTL_ENABLE_DEBUG_INFO = NO; 494 | SDKROOT = iphoneos; 495 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 496 | SWIFT_VERSION = 4.2; 497 | VALIDATE_PRODUCT = YES; 498 | }; 499 | name = Release; 500 | }; 501 | 607FACF01AFB9204008FA782 /* Debug */ = { 502 | isa = XCBuildConfiguration; 503 | baseConfigurationReference = CB6D8A2CA924D596CF22CC7B /* Pods-JBTabBarAnimation_Example.debug.xcconfig */; 504 | buildSettings = { 505 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 506 | INFOPLIST_FILE = JBTabBarAnimation/Info.plist; 507 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 508 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 509 | MODULE_NAME = ExampleApp; 510 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 511 | PRODUCT_NAME = "$(TARGET_NAME)"; 512 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 513 | SWIFT_VERSION = 4.2; 514 | TARGETED_DEVICE_FAMILY = "1,2"; 515 | }; 516 | name = Debug; 517 | }; 518 | 607FACF11AFB9204008FA782 /* Release */ = { 519 | isa = XCBuildConfiguration; 520 | baseConfigurationReference = 7B2C5B876B2193F1DA54CF54 /* Pods-JBTabBarAnimation_Example.release.xcconfig */; 521 | buildSettings = { 522 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 523 | INFOPLIST_FILE = JBTabBarAnimation/Info.plist; 524 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 525 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 526 | MODULE_NAME = ExampleApp; 527 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 528 | PRODUCT_NAME = "$(TARGET_NAME)"; 529 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 530 | SWIFT_VERSION = 4.2; 531 | TARGETED_DEVICE_FAMILY = "1,2"; 532 | }; 533 | name = Release; 534 | }; 535 | 607FACF31AFB9204008FA782 /* Debug */ = { 536 | isa = XCBuildConfiguration; 537 | baseConfigurationReference = 0D493D341AB697647F0803FF /* Pods-JBTabBarAnimation_Tests.debug.xcconfig */; 538 | buildSettings = { 539 | FRAMEWORK_SEARCH_PATHS = ( 540 | "$(SDKROOT)/Developer/Library/Frameworks", 541 | "$(inherited)", 542 | ); 543 | GCC_PREPROCESSOR_DEFINITIONS = ( 544 | "DEBUG=1", 545 | "$(inherited)", 546 | ); 547 | INFOPLIST_FILE = Tests/Info.plist; 548 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 549 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 550 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 551 | PRODUCT_NAME = "$(TARGET_NAME)"; 552 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 553 | SWIFT_VERSION = 4.2; 554 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/JBTabBarAnimation_Example.app/JBTabBarAnimation_Example"; 555 | }; 556 | name = Debug; 557 | }; 558 | 607FACF41AFB9204008FA782 /* Release */ = { 559 | isa = XCBuildConfiguration; 560 | baseConfigurationReference = 740FE63ECD6E65C0BDBF6ADD /* Pods-JBTabBarAnimation_Tests.release.xcconfig */; 561 | buildSettings = { 562 | FRAMEWORK_SEARCH_PATHS = ( 563 | "$(SDKROOT)/Developer/Library/Frameworks", 564 | "$(inherited)", 565 | ); 566 | INFOPLIST_FILE = Tests/Info.plist; 567 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 568 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 569 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 570 | PRODUCT_NAME = "$(TARGET_NAME)"; 571 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 572 | SWIFT_VERSION = 4.2; 573 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/JBTabBarAnimation_Example.app/JBTabBarAnimation_Example"; 574 | }; 575 | name = Release; 576 | }; 577 | /* End XCBuildConfiguration section */ 578 | 579 | /* Begin XCConfigurationList section */ 580 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "JBTabBarAnimation" */ = { 581 | isa = XCConfigurationList; 582 | buildConfigurations = ( 583 | 607FACED1AFB9204008FA782 /* Debug */, 584 | 607FACEE1AFB9204008FA782 /* Release */, 585 | ); 586 | defaultConfigurationIsVisible = 0; 587 | defaultConfigurationName = Release; 588 | }; 589 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "JBTabBarAnimation_Example" */ = { 590 | isa = XCConfigurationList; 591 | buildConfigurations = ( 592 | 607FACF01AFB9204008FA782 /* Debug */, 593 | 607FACF11AFB9204008FA782 /* Release */, 594 | ); 595 | defaultConfigurationIsVisible = 0; 596 | defaultConfigurationName = Release; 597 | }; 598 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "JBTabBarAnimation_Tests" */ = { 599 | isa = XCConfigurationList; 600 | buildConfigurations = ( 601 | 607FACF31AFB9204008FA782 /* Debug */, 602 | 607FACF41AFB9204008FA782 /* Release */, 603 | ); 604 | defaultConfigurationIsVisible = 0; 605 | defaultConfigurationName = Release; 606 | }; 607 | /* End XCConfigurationList section */ 608 | }; 609 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 610 | } 611 | -------------------------------------------------------------------------------- /Example/JBTabBarAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/JBTabBarAnimation.xcodeproj/xcshareddata/xcschemes/JBTabBarAnimation-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 45 | 46 | 48 | 54 | 55 | 56 | 57 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 80 | 82 | 88 | 89 | 90 | 91 | 92 | 93 | 99 | 101 | 107 | 108 | 109 | 110 | 112 | 113 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /Example/JBTabBarAnimation.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/JBTabBarAnimation.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/Animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/5fe69273cc1dbee524bf3893dd679128ffcb18fe/Example/JBTabBarAnimation/Animation.gif -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // JBTabBarAnimation 4 | // 5 | // Created by jithinpala on 05/02/2019. 6 | // Copyright (c) 2019 jithinpala. 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: [UIApplication.LaunchOptionsKey: Any]?) -> 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/JBTabBarAnimation/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/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/JBTabBarAnimation/Screen_Shot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/5fe69273cc1dbee524bf3893dd679128ffcb18fe/Example/JBTabBarAnimation/Screen_Shot_1.png -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/Screen_Shot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/5fe69273cc1dbee524bf3893dd679128ffcb18fe/Example/JBTabBarAnimation/Screen_Shot_2.png -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // JBTabBarAnimation 4 | // 5 | // Created by jithinpala on 05/02/2019. 6 | // Copyright (c) 2019 jithinpala. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController { 12 | 13 | override func viewDidLoad() { 14 | super.viewDidLoad() 15 | // Do any additional setup after loading the view, typically from a nib. 16 | print(FileManager.default) 17 | } 18 | 19 | override func didReceiveMemoryWarning() { 20 | super.didReceiveMemoryWarning() 21 | // Dispose of any resources that can be recreated. 22 | } 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'JBTabBarAnimation_Example' do 4 | pod 'JBTabBarAnimation', :path => '../' 5 | 6 | target 'JBTabBarAnimation_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - JBTabBarAnimation (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - JBTabBarAnimation (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | JBTabBarAnimation: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | JBTabBarAnimation: 2072a4c358e5daee14a869b5947c94b35023a08b 13 | 14 | PODFILE CHECKSUM: 008526dcdf914cbbed01a9ab371a1c417e5d46a0 15 | 16 | COCOAPODS: 1.6.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/JBTabBarAnimation.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "JBTabBarAnimation", 3 | "version": "0.1.0", 4 | "summary": "A custom animation for TabBarController", 5 | "description": "JBTabBarAnimation is a custom animation library for TabBarController developed in Swift", 6 | "homepage": "https://github.com/jithinpala/JBTabBarAnimation", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "Jithin Balan": "jithinpala@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/jithinpala/JBTabBarAnimation.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "11.0" 20 | }, 21 | "swift_version": "4.2", 22 | "source_files": "JBTabBarAnimation/Classes/*.swift", 23 | "frameworks": "UIKit" 24 | } 25 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - JBTabBarAnimation (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - JBTabBarAnimation (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | JBTabBarAnimation: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | JBTabBarAnimation: 2072a4c358e5daee14a869b5947c94b35023a08b 13 | 14 | PODFILE CHECKSUM: 008526dcdf914cbbed01a9ab371a1c417e5d46a0 15 | 16 | COCOAPODS: 1.6.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 01ADF522CCD21ABADD37E830AF499AB6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40CB39E715FBCDAA142E6513E126200A /* Foundation.framework */; }; 11 | 3CE39AAF94347AFCF4A521950699232F /* Pods-JBTabBarAnimation_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 078A390F0DE13CBF82F877D94169E0A7 /* Pods-JBTabBarAnimation_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12 | 4F38EA43F7DEE2CF771C0834B4D0D3BF /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ECF2A2B0720AE923C22BED3192888BE0 /* UIKit.framework */; }; 13 | 782096F0DABFA161FCF321CED72D339E /* CircleLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54D10E0DB22452E3B96B9C04664910B3 /* CircleLayer.swift */; }; 14 | 7C2AA8F7896276A5F0B6D9DF77903F09 /* Pods-JBTabBarAnimation_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EED7C5A8CEEC204D94B4282B19DB77BD /* Pods-JBTabBarAnimation_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | 868E62A2E54231F9AFE61C41E9DEB525 /* JBTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F138B52927B61A9E3AEEFEEAF8B4140 /* JBTabBar.swift */; }; 16 | B78CDABC62608919B9936358ED51A223 /* JBTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C1906F857F10566A7259094B1CE422F /* JBTabBarController.swift */; }; 17 | B9C9FFEC4D1E7FF0890D380E01D7432A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40CB39E715FBCDAA142E6513E126200A /* Foundation.framework */; }; 18 | C8F9A0659BAD42ABECBD8F08F6E1AD7F /* JBTabBarAnimation-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 57B93C10CA0EDD6BD59804E6E5672A6E /* JBTabBarAnimation-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 19 | CCE01CFBEF452419818646D88C66FE9D /* Pods-JBTabBarAnimation_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DB53EC4861C16D261CEC5F9226FD8EC /* Pods-JBTabBarAnimation_Tests-dummy.m */; }; 20 | CD764A28081E596ECD99E12938290359 /* Pods-JBTabBarAnimation_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2519C867E8FE9A96C85FBCF56ACDF06F /* Pods-JBTabBarAnimation_Example-dummy.m */; }; 21 | D2BD064251D79CBD2F2D0F72FEB0B0F3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40CB39E715FBCDAA142E6513E126200A /* Foundation.framework */; }; 22 | ED7E08267C44DAB7FA9F8E8AA8ACC3EB /* JBTabBarAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B0AF3CD18482D03917587A23D0D5259 /* JBTabBarAnimation-dummy.m */; }; 23 | /* End PBXBuildFile section */ 24 | 25 | /* Begin PBXContainerItemProxy section */ 26 | CEFC72ED3FE26C1601CF86E83108D214 /* PBXContainerItemProxy */ = { 27 | isa = PBXContainerItemProxy; 28 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 29 | proxyType = 1; 30 | remoteGlobalIDString = 3BDDC5C4B285165F2BC907F856CA7063; 31 | remoteInfo = "Pods-JBTabBarAnimation_Example"; 32 | }; 33 | E0F8CB7F32EC1B7190EAA488943A6600 /* PBXContainerItemProxy */ = { 34 | isa = PBXContainerItemProxy; 35 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 36 | proxyType = 1; 37 | remoteGlobalIDString = E12FEAFDD49402A2FBD5BE27DCB3283D; 38 | remoteInfo = JBTabBarAnimation; 39 | }; 40 | /* End PBXContainerItemProxy section */ 41 | 42 | /* Begin PBXFileReference section */ 43 | 078A390F0DE13CBF82F877D94169E0A7 /* Pods-JBTabBarAnimation_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-JBTabBarAnimation_Tests-umbrella.h"; sourceTree = ""; }; 44 | 0B0AF3CD18482D03917587A23D0D5259 /* JBTabBarAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JBTabBarAnimation-dummy.m"; sourceTree = ""; }; 45 | 0F138B52927B61A9E3AEEFEEAF8B4140 /* JBTabBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JBTabBar.swift; path = JBTabBarAnimation/Classes/JBTabBar.swift; sourceTree = ""; }; 46 | 14F65E62AC26FA6FEF6D23EC81A2B586 /* Pods-JBTabBarAnimation_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-JBTabBarAnimation_Example-acknowledgements.plist"; sourceTree = ""; }; 47 | 2519C867E8FE9A96C85FBCF56ACDF06F /* Pods-JBTabBarAnimation_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-JBTabBarAnimation_Example-dummy.m"; sourceTree = ""; }; 48 | 2DB53EC4861C16D261CEC5F9226FD8EC /* Pods-JBTabBarAnimation_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-JBTabBarAnimation_Tests-dummy.m"; sourceTree = ""; }; 49 | 3C1906F857F10566A7259094B1CE422F /* JBTabBarController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JBTabBarController.swift; path = JBTabBarAnimation/Classes/JBTabBarController.swift; sourceTree = ""; }; 50 | 40CB39E715FBCDAA142E6513E126200A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 51 | 416BE79F75F9B6CCAB39C4F9A270A192 /* Pods-JBTabBarAnimation_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-JBTabBarAnimation_Example-Info.plist"; sourceTree = ""; }; 52 | 53059B30B9114AFC94DD169B7F8D667F /* JBTabBarAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = JBTabBarAnimation.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 53 | 54D10E0DB22452E3B96B9C04664910B3 /* CircleLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CircleLayer.swift; path = JBTabBarAnimation/Classes/CircleLayer.swift; sourceTree = ""; }; 54 | 57B93C10CA0EDD6BD59804E6E5672A6E /* JBTabBarAnimation-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JBTabBarAnimation-umbrella.h"; sourceTree = ""; }; 55 | 6942F8AD47294E542CC6FA9DE85BA39E /* JBTabBarAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JBTabBarAnimation.xcconfig; sourceTree = ""; }; 56 | 748FA0D7729C70C4F79E7EE2A43705BE /* JBTabBarAnimation.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JBTabBarAnimation.modulemap; sourceTree = ""; }; 57 | 7C7443672AD421A4056135AF2E687F9C /* Pods-JBTabBarAnimation_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-JBTabBarAnimation_Tests.release.xcconfig"; sourceTree = ""; }; 58 | 7DC1E157F1D5F94AF001BC26067E4761 /* Pods-JBTabBarAnimation_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-JBTabBarAnimation_Tests-acknowledgements.markdown"; sourceTree = ""; }; 59 | 816FD330DDF69B47A57E27A32C61265B /* Pods_JBTabBarAnimation_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_JBTabBarAnimation_Tests.framework; path = "Pods-JBTabBarAnimation_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 60 | 8891BCE7C8443794E5E624ADF6B49FC2 /* Pods-JBTabBarAnimation_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-JBTabBarAnimation_Tests-acknowledgements.plist"; sourceTree = ""; }; 61 | 88BB4AA6E33A1ECE60FC42428F79C66B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 62 | 936275452E1BE561F20E68E9CD60EABC /* Pods_JBTabBarAnimation_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_JBTabBarAnimation_Example.framework; path = "Pods-JBTabBarAnimation_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 63 | 9447EE692E4BD78B7903E0D977BE9BF5 /* Pods-JBTabBarAnimation_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-JBTabBarAnimation_Example.release.xcconfig"; sourceTree = ""; }; 64 | 9542905EAFE40B655521D2D3F61A45F4 /* Pods-JBTabBarAnimation_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-JBTabBarAnimation_Tests.debug.xcconfig"; sourceTree = ""; }; 65 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 66 | 9F5213E188C2A059F4DDB1C199F6D987 /* Pods-JBTabBarAnimation_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-JBTabBarAnimation_Tests.modulemap"; sourceTree = ""; }; 67 | A0F5430851E66A0ED97A8C8D931D66D8 /* Pods-JBTabBarAnimation_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-JBTabBarAnimation_Example-frameworks.sh"; sourceTree = ""; }; 68 | A201F64C3C52F55A04362A4C65301743 /* JBTabBarAnimation.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JBTabBarAnimation.framework; path = JBTabBarAnimation.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 69 | A41BC227E6B50AE66C4477E6EA8F2F7A /* Pods-JBTabBarAnimation_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-JBTabBarAnimation_Example-acknowledgements.markdown"; sourceTree = ""; }; 70 | C0056A2843D26604711056956FFBAB71 /* JBTabBarAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JBTabBarAnimation-prefix.pch"; sourceTree = ""; }; 71 | C05EA5AE0DA2F31941D719D0279CB478 /* Pods-JBTabBarAnimation_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-JBTabBarAnimation_Tests-Info.plist"; sourceTree = ""; }; 72 | C26591414280DCC202D2A01A640F7506 /* Pods-JBTabBarAnimation_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-JBTabBarAnimation_Example.modulemap"; sourceTree = ""; }; 73 | CB12C0F224C1F82DDA93D6DD456BF409 /* Pods-JBTabBarAnimation_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-JBTabBarAnimation_Example.debug.xcconfig"; sourceTree = ""; }; 74 | D3A6CBF210FBDFDB5323B0FAE97C99D2 /* JBTabBarAnimation-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JBTabBarAnimation-Info.plist"; sourceTree = ""; }; 75 | D86AB8E873D924B9101D27D5F1407070 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 76 | ECF2A2B0720AE923C22BED3192888BE0 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; 77 | EED7C5A8CEEC204D94B4282B19DB77BD /* Pods-JBTabBarAnimation_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-JBTabBarAnimation_Example-umbrella.h"; sourceTree = ""; }; 78 | /* End PBXFileReference section */ 79 | 80 | /* Begin PBXFrameworksBuildPhase section */ 81 | 542CB50FF167E148329831C2D7918EE3 /* Frameworks */ = { 82 | isa = PBXFrameworksBuildPhase; 83 | buildActionMask = 2147483647; 84 | files = ( 85 | B9C9FFEC4D1E7FF0890D380E01D7432A /* Foundation.framework in Frameworks */, 86 | 4F38EA43F7DEE2CF771C0834B4D0D3BF /* UIKit.framework in Frameworks */, 87 | ); 88 | runOnlyForDeploymentPostprocessing = 0; 89 | }; 90 | 7D611318FDF6C2B85723E78CD0F0C2AC /* Frameworks */ = { 91 | isa = PBXFrameworksBuildPhase; 92 | buildActionMask = 2147483647; 93 | files = ( 94 | D2BD064251D79CBD2F2D0F72FEB0B0F3 /* Foundation.framework in Frameworks */, 95 | ); 96 | runOnlyForDeploymentPostprocessing = 0; 97 | }; 98 | B3B00F45F3CED9EF982FED48A2364E71 /* Frameworks */ = { 99 | isa = PBXFrameworksBuildPhase; 100 | buildActionMask = 2147483647; 101 | files = ( 102 | 01ADF522CCD21ABADD37E830AF499AB6 /* Foundation.framework in Frameworks */, 103 | ); 104 | runOnlyForDeploymentPostprocessing = 0; 105 | }; 106 | /* End PBXFrameworksBuildPhase section */ 107 | 108 | /* Begin PBXGroup section */ 109 | 04C6387E2672A0027758722121FD223F /* Development Pods */ = { 110 | isa = PBXGroup; 111 | children = ( 112 | 05E5FE28DCB2EF0E89F0E4A0A9B57ABF /* JBTabBarAnimation */, 113 | ); 114 | name = "Development Pods"; 115 | sourceTree = ""; 116 | }; 117 | 05E5FE28DCB2EF0E89F0E4A0A9B57ABF /* JBTabBarAnimation */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | 54D10E0DB22452E3B96B9C04664910B3 /* CircleLayer.swift */, 121 | 0F138B52927B61A9E3AEEFEEAF8B4140 /* JBTabBar.swift */, 122 | 3C1906F857F10566A7259094B1CE422F /* JBTabBarController.swift */, 123 | 661FD03CE760FF29F1E630A66E9C8487 /* Pod */, 124 | 070A716ECBBEC1CCEA7472ED5B415945 /* Support Files */, 125 | ); 126 | name = JBTabBarAnimation; 127 | path = ../..; 128 | sourceTree = ""; 129 | }; 130 | 070A716ECBBEC1CCEA7472ED5B415945 /* Support Files */ = { 131 | isa = PBXGroup; 132 | children = ( 133 | 748FA0D7729C70C4F79E7EE2A43705BE /* JBTabBarAnimation.modulemap */, 134 | 6942F8AD47294E542CC6FA9DE85BA39E /* JBTabBarAnimation.xcconfig */, 135 | 0B0AF3CD18482D03917587A23D0D5259 /* JBTabBarAnimation-dummy.m */, 136 | D3A6CBF210FBDFDB5323B0FAE97C99D2 /* JBTabBarAnimation-Info.plist */, 137 | C0056A2843D26604711056956FFBAB71 /* JBTabBarAnimation-prefix.pch */, 138 | 57B93C10CA0EDD6BD59804E6E5672A6E /* JBTabBarAnimation-umbrella.h */, 139 | ); 140 | name = "Support Files"; 141 | path = "Example/Pods/Target Support Files/JBTabBarAnimation"; 142 | sourceTree = ""; 143 | }; 144 | 1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */ = { 145 | isa = PBXGroup; 146 | children = ( 147 | E169A450ED27AC725DF52953F66D11E0 /* iOS */, 148 | ); 149 | name = Frameworks; 150 | sourceTree = ""; 151 | }; 152 | 4C08B270CADC5700049B57D7B67FA219 /* Pods-JBTabBarAnimation_Tests */ = { 153 | isa = PBXGroup; 154 | children = ( 155 | 9F5213E188C2A059F4DDB1C199F6D987 /* Pods-JBTabBarAnimation_Tests.modulemap */, 156 | 7DC1E157F1D5F94AF001BC26067E4761 /* Pods-JBTabBarAnimation_Tests-acknowledgements.markdown */, 157 | 8891BCE7C8443794E5E624ADF6B49FC2 /* Pods-JBTabBarAnimation_Tests-acknowledgements.plist */, 158 | 2DB53EC4861C16D261CEC5F9226FD8EC /* Pods-JBTabBarAnimation_Tests-dummy.m */, 159 | C05EA5AE0DA2F31941D719D0279CB478 /* Pods-JBTabBarAnimation_Tests-Info.plist */, 160 | 078A390F0DE13CBF82F877D94169E0A7 /* Pods-JBTabBarAnimation_Tests-umbrella.h */, 161 | 9542905EAFE40B655521D2D3F61A45F4 /* Pods-JBTabBarAnimation_Tests.debug.xcconfig */, 162 | 7C7443672AD421A4056135AF2E687F9C /* Pods-JBTabBarAnimation_Tests.release.xcconfig */, 163 | ); 164 | name = "Pods-JBTabBarAnimation_Tests"; 165 | path = "Target Support Files/Pods-JBTabBarAnimation_Tests"; 166 | sourceTree = ""; 167 | }; 168 | 661FD03CE760FF29F1E630A66E9C8487 /* Pod */ = { 169 | isa = PBXGroup; 170 | children = ( 171 | 53059B30B9114AFC94DD169B7F8D667F /* JBTabBarAnimation.podspec */, 172 | D86AB8E873D924B9101D27D5F1407070 /* LICENSE */, 173 | 88BB4AA6E33A1ECE60FC42428F79C66B /* README.md */, 174 | ); 175 | name = Pod; 176 | sourceTree = ""; 177 | }; 178 | 9915796B2E6D87A3341B5BEF305E769D /* Pods-JBTabBarAnimation_Example */ = { 179 | isa = PBXGroup; 180 | children = ( 181 | C26591414280DCC202D2A01A640F7506 /* Pods-JBTabBarAnimation_Example.modulemap */, 182 | A41BC227E6B50AE66C4477E6EA8F2F7A /* Pods-JBTabBarAnimation_Example-acknowledgements.markdown */, 183 | 14F65E62AC26FA6FEF6D23EC81A2B586 /* Pods-JBTabBarAnimation_Example-acknowledgements.plist */, 184 | 2519C867E8FE9A96C85FBCF56ACDF06F /* Pods-JBTabBarAnimation_Example-dummy.m */, 185 | A0F5430851E66A0ED97A8C8D931D66D8 /* Pods-JBTabBarAnimation_Example-frameworks.sh */, 186 | 416BE79F75F9B6CCAB39C4F9A270A192 /* Pods-JBTabBarAnimation_Example-Info.plist */, 187 | EED7C5A8CEEC204D94B4282B19DB77BD /* Pods-JBTabBarAnimation_Example-umbrella.h */, 188 | CB12C0F224C1F82DDA93D6DD456BF409 /* Pods-JBTabBarAnimation_Example.debug.xcconfig */, 189 | 9447EE692E4BD78B7903E0D977BE9BF5 /* Pods-JBTabBarAnimation_Example.release.xcconfig */, 190 | ); 191 | name = "Pods-JBTabBarAnimation_Example"; 192 | path = "Target Support Files/Pods-JBTabBarAnimation_Example"; 193 | sourceTree = ""; 194 | }; 195 | CF1408CF629C7361332E53B88F7BD30C = { 196 | isa = PBXGroup; 197 | children = ( 198 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 199 | 04C6387E2672A0027758722121FD223F /* Development Pods */, 200 | 1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */, 201 | D69E3C12C3F64A2F3DC557BEB3E1E26B /* Products */, 202 | FFF85B73D9D67808B96E2ECF46916647 /* Targets Support Files */, 203 | ); 204 | sourceTree = ""; 205 | }; 206 | D69E3C12C3F64A2F3DC557BEB3E1E26B /* Products */ = { 207 | isa = PBXGroup; 208 | children = ( 209 | A201F64C3C52F55A04362A4C65301743 /* JBTabBarAnimation.framework */, 210 | 936275452E1BE561F20E68E9CD60EABC /* Pods_JBTabBarAnimation_Example.framework */, 211 | 816FD330DDF69B47A57E27A32C61265B /* Pods_JBTabBarAnimation_Tests.framework */, 212 | ); 213 | name = Products; 214 | sourceTree = ""; 215 | }; 216 | E169A450ED27AC725DF52953F66D11E0 /* iOS */ = { 217 | isa = PBXGroup; 218 | children = ( 219 | 40CB39E715FBCDAA142E6513E126200A /* Foundation.framework */, 220 | ECF2A2B0720AE923C22BED3192888BE0 /* UIKit.framework */, 221 | ); 222 | name = iOS; 223 | sourceTree = ""; 224 | }; 225 | FFF85B73D9D67808B96E2ECF46916647 /* Targets Support Files */ = { 226 | isa = PBXGroup; 227 | children = ( 228 | 9915796B2E6D87A3341B5BEF305E769D /* Pods-JBTabBarAnimation_Example */, 229 | 4C08B270CADC5700049B57D7B67FA219 /* Pods-JBTabBarAnimation_Tests */, 230 | ); 231 | name = "Targets Support Files"; 232 | sourceTree = ""; 233 | }; 234 | /* End PBXGroup section */ 235 | 236 | /* Begin PBXHeadersBuildPhase section */ 237 | 13E25FCF1C7E7BF5721CBECC6F92DD12 /* Headers */ = { 238 | isa = PBXHeadersBuildPhase; 239 | buildActionMask = 2147483647; 240 | files = ( 241 | 7C2AA8F7896276A5F0B6D9DF77903F09 /* Pods-JBTabBarAnimation_Example-umbrella.h in Headers */, 242 | ); 243 | runOnlyForDeploymentPostprocessing = 0; 244 | }; 245 | DD978F98CC76AD7620B5FAD2842D5207 /* Headers */ = { 246 | isa = PBXHeadersBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | C8F9A0659BAD42ABECBD8F08F6E1AD7F /* JBTabBarAnimation-umbrella.h in Headers */, 250 | ); 251 | runOnlyForDeploymentPostprocessing = 0; 252 | }; 253 | E378C6D77A857A8992CF2591340CA595 /* Headers */ = { 254 | isa = PBXHeadersBuildPhase; 255 | buildActionMask = 2147483647; 256 | files = ( 257 | 3CE39AAF94347AFCF4A521950699232F /* Pods-JBTabBarAnimation_Tests-umbrella.h in Headers */, 258 | ); 259 | runOnlyForDeploymentPostprocessing = 0; 260 | }; 261 | /* End PBXHeadersBuildPhase section */ 262 | 263 | /* Begin PBXNativeTarget section */ 264 | 2CE7AE8DA12F1D3529F5C7424D92CA5C /* Pods-JBTabBarAnimation_Tests */ = { 265 | isa = PBXNativeTarget; 266 | buildConfigurationList = AC3BA36CE8F0E214A834A8B1F03AD278 /* Build configuration list for PBXNativeTarget "Pods-JBTabBarAnimation_Tests" */; 267 | buildPhases = ( 268 | E378C6D77A857A8992CF2591340CA595 /* Headers */, 269 | 078599000B66B24F8ADC0A36E4584BA8 /* Sources */, 270 | 7D611318FDF6C2B85723E78CD0F0C2AC /* Frameworks */, 271 | BB9E5481ABD45417E7A8D98EF3190834 /* Resources */, 272 | ); 273 | buildRules = ( 274 | ); 275 | dependencies = ( 276 | 41BB50E0283194A58DF3D3822E0FC92B /* PBXTargetDependency */, 277 | ); 278 | name = "Pods-JBTabBarAnimation_Tests"; 279 | productName = "Pods-JBTabBarAnimation_Tests"; 280 | productReference = 816FD330DDF69B47A57E27A32C61265B /* Pods_JBTabBarAnimation_Tests.framework */; 281 | productType = "com.apple.product-type.framework"; 282 | }; 283 | 3BDDC5C4B285165F2BC907F856CA7063 /* Pods-JBTabBarAnimation_Example */ = { 284 | isa = PBXNativeTarget; 285 | buildConfigurationList = E083D75FFD392A7EA4DD3C7313C8F2F0 /* Build configuration list for PBXNativeTarget "Pods-JBTabBarAnimation_Example" */; 286 | buildPhases = ( 287 | 13E25FCF1C7E7BF5721CBECC6F92DD12 /* Headers */, 288 | 8BBD713EEDCAF26CFF4CDAFADA253C8F /* Sources */, 289 | B3B00F45F3CED9EF982FED48A2364E71 /* Frameworks */, 290 | 9335C563A77A29D2EA9A7F26C378C9CD /* Resources */, 291 | ); 292 | buildRules = ( 293 | ); 294 | dependencies = ( 295 | 5F6CBCDFBFBE293264ED10386FBCF4E7 /* PBXTargetDependency */, 296 | ); 297 | name = "Pods-JBTabBarAnimation_Example"; 298 | productName = "Pods-JBTabBarAnimation_Example"; 299 | productReference = 936275452E1BE561F20E68E9CD60EABC /* Pods_JBTabBarAnimation_Example.framework */; 300 | productType = "com.apple.product-type.framework"; 301 | }; 302 | E12FEAFDD49402A2FBD5BE27DCB3283D /* JBTabBarAnimation */ = { 303 | isa = PBXNativeTarget; 304 | buildConfigurationList = CE59774233C6354D9AB5461E2C2B4183 /* Build configuration list for PBXNativeTarget "JBTabBarAnimation" */; 305 | buildPhases = ( 306 | DD978F98CC76AD7620B5FAD2842D5207 /* Headers */, 307 | FA41EB7AAAC99BBFB0B8B8EE6F6171C4 /* Sources */, 308 | 542CB50FF167E148329831C2D7918EE3 /* Frameworks */, 309 | 10AD7455A3B34097E13F771D2A5713D8 /* Resources */, 310 | ); 311 | buildRules = ( 312 | ); 313 | dependencies = ( 314 | ); 315 | name = JBTabBarAnimation; 316 | productName = JBTabBarAnimation; 317 | productReference = A201F64C3C52F55A04362A4C65301743 /* JBTabBarAnimation.framework */; 318 | productType = "com.apple.product-type.framework"; 319 | }; 320 | /* End PBXNativeTarget section */ 321 | 322 | /* Begin PBXProject section */ 323 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 324 | isa = PBXProject; 325 | attributes = { 326 | LastSwiftUpdateCheck = 0930; 327 | LastUpgradeCheck = 0930; 328 | }; 329 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 330 | compatibilityVersion = "Xcode 3.2"; 331 | developmentRegion = English; 332 | hasScannedForEncodings = 0; 333 | knownRegions = ( 334 | en, 335 | ); 336 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 337 | productRefGroup = D69E3C12C3F64A2F3DC557BEB3E1E26B /* Products */; 338 | projectDirPath = ""; 339 | projectRoot = ""; 340 | targets = ( 341 | E12FEAFDD49402A2FBD5BE27DCB3283D /* JBTabBarAnimation */, 342 | 3BDDC5C4B285165F2BC907F856CA7063 /* Pods-JBTabBarAnimation_Example */, 343 | 2CE7AE8DA12F1D3529F5C7424D92CA5C /* Pods-JBTabBarAnimation_Tests */, 344 | ); 345 | }; 346 | /* End PBXProject section */ 347 | 348 | /* Begin PBXResourcesBuildPhase section */ 349 | 10AD7455A3B34097E13F771D2A5713D8 /* Resources */ = { 350 | isa = PBXResourcesBuildPhase; 351 | buildActionMask = 2147483647; 352 | files = ( 353 | ); 354 | runOnlyForDeploymentPostprocessing = 0; 355 | }; 356 | 9335C563A77A29D2EA9A7F26C378C9CD /* Resources */ = { 357 | isa = PBXResourcesBuildPhase; 358 | buildActionMask = 2147483647; 359 | files = ( 360 | ); 361 | runOnlyForDeploymentPostprocessing = 0; 362 | }; 363 | BB9E5481ABD45417E7A8D98EF3190834 /* Resources */ = { 364 | isa = PBXResourcesBuildPhase; 365 | buildActionMask = 2147483647; 366 | files = ( 367 | ); 368 | runOnlyForDeploymentPostprocessing = 0; 369 | }; 370 | /* End PBXResourcesBuildPhase section */ 371 | 372 | /* Begin PBXSourcesBuildPhase section */ 373 | 078599000B66B24F8ADC0A36E4584BA8 /* Sources */ = { 374 | isa = PBXSourcesBuildPhase; 375 | buildActionMask = 2147483647; 376 | files = ( 377 | CCE01CFBEF452419818646D88C66FE9D /* Pods-JBTabBarAnimation_Tests-dummy.m in Sources */, 378 | ); 379 | runOnlyForDeploymentPostprocessing = 0; 380 | }; 381 | 8BBD713EEDCAF26CFF4CDAFADA253C8F /* Sources */ = { 382 | isa = PBXSourcesBuildPhase; 383 | buildActionMask = 2147483647; 384 | files = ( 385 | CD764A28081E596ECD99E12938290359 /* Pods-JBTabBarAnimation_Example-dummy.m in Sources */, 386 | ); 387 | runOnlyForDeploymentPostprocessing = 0; 388 | }; 389 | FA41EB7AAAC99BBFB0B8B8EE6F6171C4 /* Sources */ = { 390 | isa = PBXSourcesBuildPhase; 391 | buildActionMask = 2147483647; 392 | files = ( 393 | 782096F0DABFA161FCF321CED72D339E /* CircleLayer.swift in Sources */, 394 | 868E62A2E54231F9AFE61C41E9DEB525 /* JBTabBar.swift in Sources */, 395 | ED7E08267C44DAB7FA9F8E8AA8ACC3EB /* JBTabBarAnimation-dummy.m in Sources */, 396 | B78CDABC62608919B9936358ED51A223 /* JBTabBarController.swift in Sources */, 397 | ); 398 | runOnlyForDeploymentPostprocessing = 0; 399 | }; 400 | /* End PBXSourcesBuildPhase section */ 401 | 402 | /* Begin PBXTargetDependency section */ 403 | 41BB50E0283194A58DF3D3822E0FC92B /* PBXTargetDependency */ = { 404 | isa = PBXTargetDependency; 405 | name = "Pods-JBTabBarAnimation_Example"; 406 | target = 3BDDC5C4B285165F2BC907F856CA7063 /* Pods-JBTabBarAnimation_Example */; 407 | targetProxy = CEFC72ED3FE26C1601CF86E83108D214 /* PBXContainerItemProxy */; 408 | }; 409 | 5F6CBCDFBFBE293264ED10386FBCF4E7 /* PBXTargetDependency */ = { 410 | isa = PBXTargetDependency; 411 | name = JBTabBarAnimation; 412 | target = E12FEAFDD49402A2FBD5BE27DCB3283D /* JBTabBarAnimation */; 413 | targetProxy = E0F8CB7F32EC1B7190EAA488943A6600 /* PBXContainerItemProxy */; 414 | }; 415 | /* End PBXTargetDependency section */ 416 | 417 | /* Begin XCBuildConfiguration section */ 418 | 09685B3BD2A1388AD3355916E087959D /* Debug */ = { 419 | isa = XCBuildConfiguration; 420 | baseConfigurationReference = 6942F8AD47294E542CC6FA9DE85BA39E /* JBTabBarAnimation.xcconfig */; 421 | buildSettings = { 422 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 423 | CLANG_ENABLE_OBJC_WEAK = NO; 424 | CODE_SIGN_IDENTITY = ""; 425 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 426 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 427 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 428 | CURRENT_PROJECT_VERSION = 1; 429 | DEFINES_MODULE = YES; 430 | DYLIB_COMPATIBILITY_VERSION = 1; 431 | DYLIB_CURRENT_VERSION = 1; 432 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 433 | GCC_PREFIX_HEADER = "Target Support Files/JBTabBarAnimation/JBTabBarAnimation-prefix.pch"; 434 | INFOPLIST_FILE = "Target Support Files/JBTabBarAnimation/JBTabBarAnimation-Info.plist"; 435 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 436 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 437 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 438 | MODULEMAP_FILE = "Target Support Files/JBTabBarAnimation/JBTabBarAnimation.modulemap"; 439 | PRODUCT_MODULE_NAME = JBTabBarAnimation; 440 | PRODUCT_NAME = JBTabBarAnimation; 441 | SDKROOT = iphoneos; 442 | SKIP_INSTALL = YES; 443 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 444 | SWIFT_VERSION = 4.2; 445 | TARGETED_DEVICE_FAMILY = "1,2"; 446 | VERSIONING_SYSTEM = "apple-generic"; 447 | VERSION_INFO_PREFIX = ""; 448 | }; 449 | name = Debug; 450 | }; 451 | 2AF62981D011901E7A12B064B393A1FF /* Debug */ = { 452 | isa = XCBuildConfiguration; 453 | baseConfigurationReference = CB12C0F224C1F82DDA93D6DD456BF409 /* Pods-JBTabBarAnimation_Example.debug.xcconfig */; 454 | buildSettings = { 455 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 456 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 457 | CLANG_ENABLE_OBJC_WEAK = NO; 458 | CODE_SIGN_IDENTITY = ""; 459 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 460 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 461 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 462 | CURRENT_PROJECT_VERSION = 1; 463 | DEFINES_MODULE = YES; 464 | DYLIB_COMPATIBILITY_VERSION = 1; 465 | DYLIB_CURRENT_VERSION = 1; 466 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 467 | INFOPLIST_FILE = "Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-Info.plist"; 468 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 469 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 470 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 471 | MACH_O_TYPE = staticlib; 472 | MODULEMAP_FILE = "Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example.modulemap"; 473 | OTHER_LDFLAGS = ""; 474 | OTHER_LIBTOOLFLAGS = ""; 475 | PODS_ROOT = "$(SRCROOT)"; 476 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 477 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 478 | SDKROOT = iphoneos; 479 | SKIP_INSTALL = YES; 480 | TARGETED_DEVICE_FAMILY = "1,2"; 481 | VERSIONING_SYSTEM = "apple-generic"; 482 | VERSION_INFO_PREFIX = ""; 483 | }; 484 | name = Debug; 485 | }; 486 | 4CE281642D6EE9FAB113046B4B6328A0 /* Release */ = { 487 | isa = XCBuildConfiguration; 488 | buildSettings = { 489 | ALWAYS_SEARCH_USER_PATHS = NO; 490 | CLANG_ANALYZER_NONNULL = YES; 491 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 492 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 493 | CLANG_CXX_LIBRARY = "libc++"; 494 | CLANG_ENABLE_MODULES = YES; 495 | CLANG_ENABLE_OBJC_ARC = YES; 496 | CLANG_ENABLE_OBJC_WEAK = YES; 497 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 498 | CLANG_WARN_BOOL_CONVERSION = YES; 499 | CLANG_WARN_COMMA = YES; 500 | CLANG_WARN_CONSTANT_CONVERSION = YES; 501 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 502 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 503 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 504 | CLANG_WARN_EMPTY_BODY = YES; 505 | CLANG_WARN_ENUM_CONVERSION = YES; 506 | CLANG_WARN_INFINITE_RECURSION = YES; 507 | CLANG_WARN_INT_CONVERSION = YES; 508 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 509 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 510 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 511 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 512 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 513 | CLANG_WARN_STRICT_PROTOTYPES = YES; 514 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 515 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 516 | CLANG_WARN_UNREACHABLE_CODE = YES; 517 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 518 | COPY_PHASE_STRIP = NO; 519 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 520 | ENABLE_NS_ASSERTIONS = NO; 521 | ENABLE_STRICT_OBJC_MSGSEND = YES; 522 | GCC_C_LANGUAGE_STANDARD = gnu11; 523 | GCC_NO_COMMON_BLOCKS = YES; 524 | GCC_PREPROCESSOR_DEFINITIONS = ( 525 | "POD_CONFIGURATION_RELEASE=1", 526 | "$(inherited)", 527 | ); 528 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 529 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 530 | GCC_WARN_UNDECLARED_SELECTOR = YES; 531 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 532 | GCC_WARN_UNUSED_FUNCTION = YES; 533 | GCC_WARN_UNUSED_VARIABLE = YES; 534 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 535 | MTL_ENABLE_DEBUG_INFO = NO; 536 | MTL_FAST_MATH = YES; 537 | PRODUCT_NAME = "$(TARGET_NAME)"; 538 | STRIP_INSTALLED_PRODUCT = NO; 539 | SWIFT_COMPILATION_MODE = wholemodule; 540 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 541 | SWIFT_VERSION = 4.2; 542 | SYMROOT = "${SRCROOT}/../build"; 543 | }; 544 | name = Release; 545 | }; 546 | 6DFA1578582149B7E24AD55CBA30F07A /* Debug */ = { 547 | isa = XCBuildConfiguration; 548 | buildSettings = { 549 | ALWAYS_SEARCH_USER_PATHS = NO; 550 | CLANG_ANALYZER_NONNULL = YES; 551 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 552 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 553 | CLANG_CXX_LIBRARY = "libc++"; 554 | CLANG_ENABLE_MODULES = YES; 555 | CLANG_ENABLE_OBJC_ARC = YES; 556 | CLANG_ENABLE_OBJC_WEAK = YES; 557 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 558 | CLANG_WARN_BOOL_CONVERSION = YES; 559 | CLANG_WARN_COMMA = YES; 560 | CLANG_WARN_CONSTANT_CONVERSION = YES; 561 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 562 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 563 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 564 | CLANG_WARN_EMPTY_BODY = YES; 565 | CLANG_WARN_ENUM_CONVERSION = YES; 566 | CLANG_WARN_INFINITE_RECURSION = YES; 567 | CLANG_WARN_INT_CONVERSION = YES; 568 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 569 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 570 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 571 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 572 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 573 | CLANG_WARN_STRICT_PROTOTYPES = YES; 574 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 575 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 576 | CLANG_WARN_UNREACHABLE_CODE = YES; 577 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 578 | COPY_PHASE_STRIP = NO; 579 | DEBUG_INFORMATION_FORMAT = dwarf; 580 | ENABLE_STRICT_OBJC_MSGSEND = YES; 581 | ENABLE_TESTABILITY = YES; 582 | GCC_C_LANGUAGE_STANDARD = gnu11; 583 | GCC_DYNAMIC_NO_PIC = NO; 584 | GCC_NO_COMMON_BLOCKS = YES; 585 | GCC_OPTIMIZATION_LEVEL = 0; 586 | GCC_PREPROCESSOR_DEFINITIONS = ( 587 | "POD_CONFIGURATION_DEBUG=1", 588 | "DEBUG=1", 589 | "$(inherited)", 590 | ); 591 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 592 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 593 | GCC_WARN_UNDECLARED_SELECTOR = YES; 594 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 595 | GCC_WARN_UNUSED_FUNCTION = YES; 596 | GCC_WARN_UNUSED_VARIABLE = YES; 597 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 598 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 599 | MTL_FAST_MATH = YES; 600 | ONLY_ACTIVE_ARCH = YES; 601 | PRODUCT_NAME = "$(TARGET_NAME)"; 602 | STRIP_INSTALLED_PRODUCT = NO; 603 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 604 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 605 | SWIFT_VERSION = 4.2; 606 | SYMROOT = "${SRCROOT}/../build"; 607 | }; 608 | name = Debug; 609 | }; 610 | 90F960ED2417EF9EB2F4FE7E2D000FF2 /* Release */ = { 611 | isa = XCBuildConfiguration; 612 | baseConfigurationReference = 6942F8AD47294E542CC6FA9DE85BA39E /* JBTabBarAnimation.xcconfig */; 613 | buildSettings = { 614 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 615 | CLANG_ENABLE_OBJC_WEAK = NO; 616 | CODE_SIGN_IDENTITY = ""; 617 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 618 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 619 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 620 | CURRENT_PROJECT_VERSION = 1; 621 | DEFINES_MODULE = YES; 622 | DYLIB_COMPATIBILITY_VERSION = 1; 623 | DYLIB_CURRENT_VERSION = 1; 624 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 625 | GCC_PREFIX_HEADER = "Target Support Files/JBTabBarAnimation/JBTabBarAnimation-prefix.pch"; 626 | INFOPLIST_FILE = "Target Support Files/JBTabBarAnimation/JBTabBarAnimation-Info.plist"; 627 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 628 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 629 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 630 | MODULEMAP_FILE = "Target Support Files/JBTabBarAnimation/JBTabBarAnimation.modulemap"; 631 | PRODUCT_MODULE_NAME = JBTabBarAnimation; 632 | PRODUCT_NAME = JBTabBarAnimation; 633 | SDKROOT = iphoneos; 634 | SKIP_INSTALL = YES; 635 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 636 | SWIFT_VERSION = 4.2; 637 | TARGETED_DEVICE_FAMILY = "1,2"; 638 | VALIDATE_PRODUCT = YES; 639 | VERSIONING_SYSTEM = "apple-generic"; 640 | VERSION_INFO_PREFIX = ""; 641 | }; 642 | name = Release; 643 | }; 644 | B4A74E5336129C2516C236B2C8A247EC /* Debug */ = { 645 | isa = XCBuildConfiguration; 646 | baseConfigurationReference = 9542905EAFE40B655521D2D3F61A45F4 /* Pods-JBTabBarAnimation_Tests.debug.xcconfig */; 647 | buildSettings = { 648 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 649 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 650 | CLANG_ENABLE_OBJC_WEAK = NO; 651 | CODE_SIGN_IDENTITY = ""; 652 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 653 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 654 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 655 | CURRENT_PROJECT_VERSION = 1; 656 | DEFINES_MODULE = YES; 657 | DYLIB_COMPATIBILITY_VERSION = 1; 658 | DYLIB_CURRENT_VERSION = 1; 659 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 660 | INFOPLIST_FILE = "Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-Info.plist"; 661 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 662 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 663 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 664 | MACH_O_TYPE = staticlib; 665 | MODULEMAP_FILE = "Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests.modulemap"; 666 | OTHER_LDFLAGS = ""; 667 | OTHER_LIBTOOLFLAGS = ""; 668 | PODS_ROOT = "$(SRCROOT)"; 669 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 670 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 671 | SDKROOT = iphoneos; 672 | SKIP_INSTALL = YES; 673 | TARGETED_DEVICE_FAMILY = "1,2"; 674 | VERSIONING_SYSTEM = "apple-generic"; 675 | VERSION_INFO_PREFIX = ""; 676 | }; 677 | name = Debug; 678 | }; 679 | D4710BB661046FF4B2B6C312DAAA0284 /* Release */ = { 680 | isa = XCBuildConfiguration; 681 | baseConfigurationReference = 9447EE692E4BD78B7903E0D977BE9BF5 /* Pods-JBTabBarAnimation_Example.release.xcconfig */; 682 | buildSettings = { 683 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 684 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 685 | CLANG_ENABLE_OBJC_WEAK = NO; 686 | CODE_SIGN_IDENTITY = ""; 687 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 688 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 689 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 690 | CURRENT_PROJECT_VERSION = 1; 691 | DEFINES_MODULE = YES; 692 | DYLIB_COMPATIBILITY_VERSION = 1; 693 | DYLIB_CURRENT_VERSION = 1; 694 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 695 | INFOPLIST_FILE = "Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-Info.plist"; 696 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 697 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 698 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 699 | MACH_O_TYPE = staticlib; 700 | MODULEMAP_FILE = "Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example.modulemap"; 701 | OTHER_LDFLAGS = ""; 702 | OTHER_LIBTOOLFLAGS = ""; 703 | PODS_ROOT = "$(SRCROOT)"; 704 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 705 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 706 | SDKROOT = iphoneos; 707 | SKIP_INSTALL = YES; 708 | TARGETED_DEVICE_FAMILY = "1,2"; 709 | VALIDATE_PRODUCT = YES; 710 | VERSIONING_SYSTEM = "apple-generic"; 711 | VERSION_INFO_PREFIX = ""; 712 | }; 713 | name = Release; 714 | }; 715 | D5C54C79DF84457699342C1CBA349043 /* Release */ = { 716 | isa = XCBuildConfiguration; 717 | baseConfigurationReference = 7C7443672AD421A4056135AF2E687F9C /* Pods-JBTabBarAnimation_Tests.release.xcconfig */; 718 | buildSettings = { 719 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 720 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 721 | CLANG_ENABLE_OBJC_WEAK = NO; 722 | CODE_SIGN_IDENTITY = ""; 723 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 724 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 725 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 726 | CURRENT_PROJECT_VERSION = 1; 727 | DEFINES_MODULE = YES; 728 | DYLIB_COMPATIBILITY_VERSION = 1; 729 | DYLIB_CURRENT_VERSION = 1; 730 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 731 | INFOPLIST_FILE = "Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-Info.plist"; 732 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 733 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 734 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 735 | MACH_O_TYPE = staticlib; 736 | MODULEMAP_FILE = "Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests.modulemap"; 737 | OTHER_LDFLAGS = ""; 738 | OTHER_LIBTOOLFLAGS = ""; 739 | PODS_ROOT = "$(SRCROOT)"; 740 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 741 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 742 | SDKROOT = iphoneos; 743 | SKIP_INSTALL = YES; 744 | TARGETED_DEVICE_FAMILY = "1,2"; 745 | VALIDATE_PRODUCT = YES; 746 | VERSIONING_SYSTEM = "apple-generic"; 747 | VERSION_INFO_PREFIX = ""; 748 | }; 749 | name = Release; 750 | }; 751 | /* End XCBuildConfiguration section */ 752 | 753 | /* Begin XCConfigurationList section */ 754 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 755 | isa = XCConfigurationList; 756 | buildConfigurations = ( 757 | 6DFA1578582149B7E24AD55CBA30F07A /* Debug */, 758 | 4CE281642D6EE9FAB113046B4B6328A0 /* Release */, 759 | ); 760 | defaultConfigurationIsVisible = 0; 761 | defaultConfigurationName = Release; 762 | }; 763 | AC3BA36CE8F0E214A834A8B1F03AD278 /* Build configuration list for PBXNativeTarget "Pods-JBTabBarAnimation_Tests" */ = { 764 | isa = XCConfigurationList; 765 | buildConfigurations = ( 766 | B4A74E5336129C2516C236B2C8A247EC /* Debug */, 767 | D5C54C79DF84457699342C1CBA349043 /* Release */, 768 | ); 769 | defaultConfigurationIsVisible = 0; 770 | defaultConfigurationName = Release; 771 | }; 772 | CE59774233C6354D9AB5461E2C2B4183 /* Build configuration list for PBXNativeTarget "JBTabBarAnimation" */ = { 773 | isa = XCConfigurationList; 774 | buildConfigurations = ( 775 | 09685B3BD2A1388AD3355916E087959D /* Debug */, 776 | 90F960ED2417EF9EB2F4FE7E2D000FF2 /* Release */, 777 | ); 778 | defaultConfigurationIsVisible = 0; 779 | defaultConfigurationName = Release; 780 | }; 781 | E083D75FFD392A7EA4DD3C7313C8F2F0 /* Build configuration list for PBXNativeTarget "Pods-JBTabBarAnimation_Example" */ = { 782 | isa = XCConfigurationList; 783 | buildConfigurations = ( 784 | 2AF62981D011901E7A12B064B393A1FF /* Debug */, 785 | D4710BB661046FF4B2B6C312DAAA0284 /* Release */, 786 | ); 787 | defaultConfigurationIsVisible = 0; 788 | defaultConfigurationName = Release; 789 | }; 790 | /* End XCConfigurationList section */ 791 | }; 792 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 793 | } 794 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_JBTabBarAnimation : NSObject 3 | @end 4 | @implementation PodsDummy_JBTabBarAnimation 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double JBTabBarAnimationVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char JBTabBarAnimationVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation.modulemap: -------------------------------------------------------------------------------- 1 | framework module JBTabBarAnimation { 2 | umbrella header "JBTabBarAnimation-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/JBTabBarAnimation 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -framework "UIKit" 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## JBTabBarAnimation 5 | 6 | Copyright (c) 2019 jithinpala 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_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) 2019 jithinpala <jithin.balan@outware.com.au> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | JBTabBarAnimation 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_JBTabBarAnimation_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_JBTabBarAnimation_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | function on_error { 7 | echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" 8 | } 9 | trap 'on_error $LINENO' ERR 10 | 11 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 12 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 13 | # frameworks to, so exit 0 (signalling the script phase was successful). 14 | exit 0 15 | fi 16 | 17 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 18 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 19 | 20 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 21 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 22 | 23 | # Used as a return value for each invocation of `strip_invalid_archs` function. 24 | STRIP_BINARY_RETVAL=0 25 | 26 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 27 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 28 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 29 | 30 | # Copies and strips a vendored framework 31 | install_framework() 32 | { 33 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 34 | local source="${BUILT_PRODUCTS_DIR}/$1" 35 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 36 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 37 | elif [ -r "$1" ]; then 38 | local source="$1" 39 | fi 40 | 41 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 42 | 43 | if [ -L "${source}" ]; then 44 | echo "Symlinked..." 45 | source="$(readlink "${source}")" 46 | fi 47 | 48 | # Use filter instead of exclude so missing patterns don't throw errors. 49 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 50 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 51 | 52 | local basename 53 | basename="$(basename -s .framework "$1")" 54 | binary="${destination}/${basename}.framework/${basename}" 55 | 56 | if ! [ -r "$binary" ]; then 57 | binary="${destination}/${basename}" 58 | elif [ -L "${binary}" ]; then 59 | echo "Destination binary is symlinked..." 60 | dirname="$(dirname "${binary}")" 61 | binary="${dirname}/$(readlink "${binary}")" 62 | fi 63 | 64 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 65 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 66 | strip_invalid_archs "$binary" 67 | fi 68 | 69 | # Resign the code if required by the build settings to avoid unstable apps 70 | code_sign_if_enabled "${destination}/$(basename "$1")" 71 | 72 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 73 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 74 | local swift_runtime_libs 75 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) 76 | for lib in $swift_runtime_libs; do 77 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 78 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 79 | code_sign_if_enabled "${destination}/${lib}" 80 | done 81 | fi 82 | } 83 | 84 | # Copies and strips a vendored dSYM 85 | install_dsym() { 86 | local source="$1" 87 | if [ -r "$source" ]; then 88 | # Copy the dSYM into a the targets temp dir. 89 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 90 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 91 | 92 | local basename 93 | basename="$(basename -s .framework.dSYM "$source")" 94 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 95 | 96 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 97 | if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then 98 | strip_invalid_archs "$binary" 99 | fi 100 | 101 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 102 | # Move the stripped file into its final destination. 103 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 104 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 105 | else 106 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 107 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 108 | fi 109 | fi 110 | } 111 | 112 | # Signs a framework with the provided identity 113 | code_sign_if_enabled() { 114 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 115 | # Use the current code_sign_identity 116 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 117 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 118 | 119 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 120 | code_sign_cmd="$code_sign_cmd &" 121 | fi 122 | echo "$code_sign_cmd" 123 | eval "$code_sign_cmd" 124 | fi 125 | } 126 | 127 | # Strip invalid architectures 128 | strip_invalid_archs() { 129 | binary="$1" 130 | # Get architectures for current target binary 131 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 132 | # Intersect them with the architectures we are building for 133 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 134 | # If there are no archs supported by this binary then warn the user 135 | if [[ -z "$intersected_archs" ]]; then 136 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 137 | STRIP_BINARY_RETVAL=0 138 | return 139 | fi 140 | stripped="" 141 | for arch in $binary_archs; do 142 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 143 | # Strip non-valid architectures in-place 144 | lipo -remove "$arch" -output "$binary" "$binary" 145 | stripped="$stripped $arch" 146 | fi 147 | done 148 | if [[ "$stripped" ]]; then 149 | echo "Stripped $binary of architectures:$stripped" 150 | fi 151 | STRIP_BINARY_RETVAL=1 152 | } 153 | 154 | 155 | if [[ "$CONFIGURATION" == "Debug" ]]; then 156 | install_framework "${BUILT_PRODUCTS_DIR}/JBTabBarAnimation/JBTabBarAnimation.framework" 157 | fi 158 | if [[ "$CONFIGURATION" == "Release" ]]; then 159 | install_framework "${BUILT_PRODUCTS_DIR}/JBTabBarAnimation/JBTabBarAnimation.framework" 160 | fi 161 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 162 | wait 163 | fi 164 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_JBTabBarAnimation_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_JBTabBarAnimation_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/JBTabBarAnimation" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/JBTabBarAnimation/JBTabBarAnimation.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "JBTabBarAnimation" -framework "UIKit" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_JBTabBarAnimation_Example { 2 | umbrella header "Pods-JBTabBarAnimation_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/JBTabBarAnimation" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/JBTabBarAnimation/JBTabBarAnimation.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "JBTabBarAnimation" -framework "UIKit" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_JBTabBarAnimation_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_JBTabBarAnimation_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_JBTabBarAnimation_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_JBTabBarAnimation_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/JBTabBarAnimation" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/JBTabBarAnimation/JBTabBarAnimation.framework/Headers" 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_LDFLAGS = $(inherited) -framework "JBTabBarAnimation" -framework "UIKit" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_JBTabBarAnimation_Tests { 2 | umbrella header "Pods-JBTabBarAnimation_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/JBTabBarAnimation" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/JBTabBarAnimation/JBTabBarAnimation.framework/Headers" 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_LDFLAGS = $(inherited) -framework "JBTabBarAnimation" -framework "UIKit" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /Example/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 XCTest 2 | import JBTabBarAnimation 3 | 4 | class Tests: XCTestCase { 5 | 6 | override func setUp() { 7 | super.setUp() 8 | // Put setup code here. This method is called before the invocation of each test method in the class. 9 | } 10 | 11 | override func tearDown() { 12 | // Put teardown code here. This method is called after the invocation of each test method in the class. 13 | super.tearDown() 14 | } 15 | 16 | func testExample() { 17 | // This is an example of a functional test case. 18 | XCTAssert(true, "Pass") 19 | } 20 | 21 | func testPerformanceExample() { 22 | // This is an example of a performance test case. 23 | self.measure() { 24 | // Put the code you want to measure the time of here. 25 | } 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /JBTabBarAnimation.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint JBTabBarAnimation.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'JBTabBarAnimation' 11 | s.version = '1.0.0' 12 | s.summary = 'A custom animation for TabBarController' 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 | JBTabBarAnimation is a custom animation library for TabBarController developed in Swift 22 | DESC 23 | 24 | s.homepage = 'https://github.com/jithinpala/JBTabBarAnimation' 25 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'Jithin Balan' => 'jithinpala@gmail.com' } 28 | s.source = { :git => 'https://github.com/jithinpala/JBTabBarAnimation.git', :tag => s.version.to_s } 29 | # s.social_media_url = 'https://twitter.com/' 30 | 31 | s.ios.deployment_target = '11.0' 32 | s.swift_version = '4.2' 33 | 34 | s.source_files = 'JBTabBarAnimation/Classes/*.swift' 35 | 36 | # s.resource_bundles = { 37 | # 'JBTabBarAnimation' => ['JBTabBarAnimation/Assets/*.png'] 38 | # } 39 | 40 | # s.public_header_files = 'Pod/Classes/**/*.h' 41 | s.frameworks = 'UIKit' 42 | # s.dependency 'AFNetworking', '~> 2.3' 43 | end 44 | -------------------------------------------------------------------------------- /JBTabBarAnimation/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/5fe69273cc1dbee524bf3893dd679128ffcb18fe/JBTabBarAnimation/Assets/.gitkeep -------------------------------------------------------------------------------- /JBTabBarAnimation/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/5fe69273cc1dbee524bf3893dd679128ffcb18fe/JBTabBarAnimation/Classes/.gitkeep -------------------------------------------------------------------------------- /JBTabBarAnimation/Classes/CircleLayer.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CircleLayer.swift 3 | // JBTabBarAnimation 4 | // 5 | // Created by Jithin Balan on 2/5/19. 6 | // 7 | 8 | import Foundation 9 | import UIKit 10 | 11 | open class CircleLayer: CAShapeLayer { 12 | 13 | var circleColor = UIColor.white 14 | var positionValue: CGPoint = .zero 15 | private var radiusValue: CGFloat = 25 16 | 17 | override init() { 18 | super.init() 19 | } 20 | 21 | required public init?(coder aDecoder: NSCoder) { 22 | fatalError("init(coder:) has not been implemented") 23 | } 24 | 25 | func createCircle() -> CircleLayer { 26 | fillColor = circleColor.cgColor 27 | path = createPath() 28 | shadowColor = UIColor.lightGray.cgColor 29 | shadowOffset = .zero 30 | shadowOpacity = 0.3 31 | shadowRadius = 3 32 | return self 33 | } 34 | 35 | func createPath() -> CGPath{ 36 | let path = UIBezierPath() 37 | path.addArc(withCenter: positionValue, radius: radiusValue, startAngle: 0, endAngle: .pi * 2, clockwise: true) 38 | return path.cgPath 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /JBTabBarAnimation/Classes/JBTabBar.swift: -------------------------------------------------------------------------------- 1 | // 2 | // JBTabBar.swift 3 | // JBTabBarAnimation 4 | // 5 | // Created by Jithin Balan on 2/5/19. 6 | // 7 | 8 | import UIKit 9 | 10 | open class JBTabBar: UITabBar { 11 | 12 | let tabBarShadowCurveShapeLayer = CAShapeLayer() 13 | 14 | private let tabBarCurveShapeLayer = CAShapeLayer() 15 | 16 | private struct Constants { 17 | static let itemWidth = 60 18 | } 19 | 20 | var selectedIndex: Int = 0 21 | 22 | var startPoint: CGPoint { 23 | var startXPoint: CGFloat = 0 24 | let selectedItem = self.subviews[selectedIndex] 25 | if let itemImageView = self.imageView(at: selectedIndex) { 26 | startXPoint = selectedItem.frame.origin.x + itemImageView.center.x - 41 27 | } 28 | return CGPoint(x: startXPoint, y: 0) 29 | } 30 | 31 | private var diameter: CGFloat = 72 32 | 33 | override public func draw(_ rect: CGRect) { 34 | super.draw(rect) 35 | DispatchQueue.main.async { 36 | self.setupTabBar() 37 | } 38 | } 39 | 40 | func setupTabBar() { 41 | self.isTranslucent = true 42 | self.backgroundColor = UIColor.clear 43 | self.backgroundImage = UIImage() 44 | self.shadowImage = UIImage() 45 | self.clipsToBounds = false 46 | 47 | tabBarCurveShapeLayer.frame = CGRect(x: 0, y: 0, width: self.bounds.width, height: self.bounds.height) 48 | tabBarCurveShapeLayer.fillColor = UIColor.white.cgColor 49 | tabBarCurveShapeLayer.strokeColor = UIColor.white.cgColor 50 | tabBarCurveShapeLayer.path = createPathForTabBar().cgPath 51 | self.layer.insertSublayer(tabBarCurveShapeLayer, at: 0) 52 | 53 | tabBarShadowCurveShapeLayer.frame = CGRect(x: 0, y: 0, width: self.bounds.width, height: self.bounds.height) 54 | tabBarShadowCurveShapeLayer.shadowColor = UIColor.lightGray.cgColor 55 | tabBarShadowCurveShapeLayer.shadowOffset = .zero 56 | tabBarShadowCurveShapeLayer.shadowOpacity = 0.3 57 | tabBarShadowCurveShapeLayer.shadowRadius = 3 58 | self.layer.insertSublayer(tabBarShadowCurveShapeLayer, at: 0) 59 | } 60 | 61 | private func createPathForTabBar() -> UIBezierPath { 62 | let startPoint = self.startPoint 63 | let path = UIBezierPath() 64 | path.move(to: CGPoint(x: 0, y: 0)) 65 | path.addLine(to: startPoint) 66 | 67 | let leftCurveControlPoint1 = CGPoint(x: startPoint.x + 6, y: 0) 68 | let leftCurveControlPoint2 = CGPoint(x: startPoint.x + 10, y: 5) 69 | path.addCurve(to: CGPoint(x: startPoint.x + 10, y: 10), controlPoint1: leftCurveControlPoint1, controlPoint2: leftCurveControlPoint2) 70 | 71 | let middleCurveControlPoint1 = CGPoint(x: startPoint.x + 10, y: 60) 72 | let middleCurveControlPoint2 = CGPoint(x: startPoint.x + diameter, y: 60) 73 | path.addCurve(to: CGPoint(x: startPoint.x + diameter, y: 10), controlPoint1: middleCurveControlPoint1, controlPoint2: middleCurveControlPoint2) 74 | 75 | let rightCurveControlPoint1 = CGPoint(x: startPoint.x + diameter, y: 5) 76 | let rightCurveControlPoint2 = CGPoint(x: startPoint.x + diameter + 5, y: 0) 77 | path.addCurve(to: CGPoint(x: startPoint.x + diameter + 10, y: 0), controlPoint1: rightCurveControlPoint1, controlPoint2: rightCurveControlPoint2) 78 | 79 | path.addLine(to: CGPoint(x: self.bounds.width, y: 0)) 80 | path.addLine(to: CGPoint(x: self.bounds.width, y: self.bounds.height)) 81 | path.addLine(to: CGPoint(x: 0, y: self.bounds.height)) 82 | path.addLine(to: CGPoint(x: 0, y: 0)) 83 | 84 | return path 85 | } 86 | 87 | func curveAnimation(for index: Int) { 88 | self.selectedIndex = index 89 | curveAnimation() 90 | } 91 | 92 | private func curveAnimation() { 93 | let path = createPathForTabBar().cgPath 94 | let pathAnimation = CASpringAnimation(keyPath: "path") 95 | pathAnimation.damping = 100 96 | pathAnimation.toValue = path 97 | pathAnimation.duration = 0.7 98 | pathAnimation.fillMode = .forwards 99 | pathAnimation.isRemovedOnCompletion = false 100 | pathAnimation.autoreverses = false 101 | pathAnimation.repeatCount = 0 102 | tabBarCurveShapeLayer.add(pathAnimation, forKey: "pathAnimation") 103 | 104 | tabBarShadowCurveShapeLayer.add(pathAnimation, forKey: "pathAnimation") 105 | } 106 | 107 | func finishAnimation() { 108 | tabBarCurveShapeLayer.path = createPathForTabBar().cgPath 109 | tabBarShadowCurveShapeLayer.path = createPathForTabBar().cgPath 110 | } 111 | 112 | } 113 | 114 | extension UITabBar { 115 | func imageView(at index: Int) -> UIImageView? { 116 | let selectedView = self.subviews[index] 117 | if let imageView = (((selectedView.subviews.filter { $0 is UIVisualEffectView }.first) as? UIVisualEffectView)?.contentView.subviews.filter { $0 is UIImageView }.first as? UIImageView) { 118 | return imageView 119 | } else if let imageView = (selectedView.subviews.filter { $0 is UIImageView }.first as? UIImageView) { 120 | return imageView 121 | } 122 | return nil 123 | } 124 | 125 | func titleLabel(at index: Int) -> UILabel? { 126 | let selectedView = self.subviews[index] 127 | if let titleLabel = (((selectedView.subviews.filter { $0 is UIVisualEffectView }.first) as? UIVisualEffectView)?.contentView.subviews.filter { $0 is UILabel }.first as? UILabel) { 128 | return titleLabel 129 | } else if let titleLabel = (selectedView.subviews.filter { $0 is UILabel }.first as? UILabel) { 130 | return titleLabel 131 | } 132 | return nil 133 | } 134 | } 135 | -------------------------------------------------------------------------------- /JBTabBarAnimation/Classes/JBTabBarController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // JBTabBarController.swift 3 | // JBTabBarAnimation 4 | // 5 | // Created by Jithin Balan on 2/5/19. 6 | // 7 | 8 | import UIKit 9 | 10 | open class JBTabBarController: UITabBarController { 11 | 12 | var priviousSelectedIndex: Int = -1 13 | 14 | open var circleColor = UIColor.white 15 | 16 | open override func viewDidLoad() { 17 | super.viewDidLoad() 18 | } 19 | 20 | open override func viewDidAppear(_ animated: Bool) { 21 | super.viewDidAppear(animated) 22 | if let item = self.tabBar.selectedItem { 23 | self.tabBar(self.tabBar, didSelect: item) 24 | } 25 | } 26 | 27 | open override func tabBar(_ tabBar: UITabBar, didSelect item: UITabBarItem) { 28 | if let items = self.tabBar.items, let selectedIndex = items.firstIndex(of: item), priviousSelectedIndex != selectedIndex, let customTabBar = tabBar as? JBTabBar { 29 | let tabBarItemViews = self.tabBarItemViews() 30 | tabBarItemViews.forEach { tabBarItemView in 31 | let firstIndex = tabBarItemViews.firstIndex(of: tabBarItemView) 32 | if selectedIndex == firstIndex { 33 | showItemLabel(for: selectedIndex, isHidden: true) 34 | createRoundLayer(for: tabBarItemView, at: selectedIndex) 35 | customTabBar.curveAnimation(for: selectedIndex) 36 | shouldDisableUserInteraction(for: false) 37 | UIView.animate(withDuration: 0.7, delay: 0.0, usingSpringWithDamping: 0.57, initialSpringVelocity: 0.0, options: .curveEaseInOut, animations: { 38 | tabBarItemView.frame = CGRect(x: tabBarItemView.frame.origin.x, y: tabBarItemView.frame.origin.y - 1, width: tabBarItemView.frame.width, height: tabBarItemView.frame.height) 39 | }, completion: { _ in 40 | customTabBar.finishAnimation() 41 | self.shouldDisableUserInteraction(for: true) 42 | }) 43 | } else if priviousSelectedIndex == firstIndex { 44 | showItemLabel(for: priviousSelectedIndex, isHidden: false) 45 | removeBarItemCircleLayer(barItemView: tabBarItemView) 46 | UIView.animate(withDuration: 0.7, delay: 0.0, usingSpringWithDamping: 0.57, initialSpringVelocity: 0.0, options: .curveEaseInOut, animations: { 47 | tabBarItemView.frame = CGRect(x: tabBarItemView.frame.origin.x, y: tabBarItemView.frame.origin.y + 1, width: tabBarItemView.frame.width, height: tabBarItemView.frame.height) 48 | }, completion: nil) 49 | } 50 | } 51 | priviousSelectedIndex = selectedIndex 52 | } 53 | } 54 | 55 | private func tabBarItemViews() -> [UIView] { 56 | let interactionControls = tabBar.subviews.filter { $0 is UIControl } 57 | return interactionControls.sorted(by: { $0.frame.minX < $1.frame.minX }) 58 | } 59 | 60 | private func removeBarItemCircleLayer(barItemView: UIView) { 61 | if let circleLayer = (barItemView.layer.sublayers?.filter { $0 is CircleLayer }.first) { 62 | circleLayer.removeFromSuperlayer() 63 | } 64 | } 65 | 66 | private func createRoundLayer(for tabBarItemView: UIView, at index: Int) { 67 | if let itemImageView = tabBar.imageView(at: index) { 68 | let circle = CircleLayer() 69 | circle.circleColor = circleColor 70 | circle.positionValue = itemImageView.center 71 | tabBarItemView.layer.addSublayer(circle.createCircle()) 72 | } 73 | } 74 | 75 | private func showItemLabel(for index: Int, isHidden: Bool) { 76 | if let buttonLabel = tabBar.titleLabel(at: index) { 77 | buttonLabel.isHidden = isHidden 78 | } 79 | } 80 | 81 | private func shouldDisableUserInteraction(for status: Bool) { 82 | tabBar.isUserInteractionEnabled = status 83 | } 84 | } 85 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 jithinpala 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 | # JBTabBarAnimation 2 | 3 | [![Version](https://img.shields.io/cocoapods/v/JBTabBarAnimation.svg?style=flat)](https://cocoapods.org/pods/JBTabBarAnimation) 4 | [![License](https://img.shields.io/cocoapods/l/JBTabBarAnimation.svg?style=flat)](https://cocoapods.org/pods/JBTabBarAnimation) 5 | [![Platform](https://img.shields.io/cocoapods/p/JBTabBarAnimation.svg?style=flat)](https://cocoapods.org/pods/JBTabBarAnimation) 6 | 7 | ## Example 8 | 9 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 10 | 11 | ### Animation 12 | ![alt text](https://github.com/jithinpala/JBTabBarAnimation/blob/master/Example/JBTabBarAnimation/Animation.gif) 13 | 14 | ## Requirements 15 | 16 | - iOS 11.0+ 17 | - Xcode 10.0+ 18 | 19 | ## Installation 20 | 21 | JBTabBarAnimation is available through [CocoaPods](https://cocoapods.org). To install 22 | it, simply add the following line to your Podfile: 23 | 24 | ```ruby 25 | pod 'JBTabBarAnimation' 26 | ``` 27 | 28 | ## Usage example 29 | 30 | ### Set UITabbarController to JBTabBarController 31 | ![alt text](https://github.com/jithinpala/JBTabBarAnimation/blob/master/Example/JBTabBarAnimation/Screen_Shot_1.png) 32 | 33 | ### Set UITabBar to JBTabBar 34 | ![alt text](https://github.com/jithinpala/JBTabBarAnimation/blob/master/Example/JBTabBarAnimation/Screen_Shot_2.png) 35 | 36 | ## Author 37 | 38 | Jithin Balan, jithinpala@gmail.com 39 | 40 | ## License 41 | 42 | JBTabBarAnimation is available under the MIT license. See the LICENSE file for more info. 43 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------