├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/JBTabBarAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/JBTabBarAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JBTabBarAnimation.xcodeproj/xcshareddata/xcschemes/JBTabBarAnimation-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation.xcodeproj/xcshareddata/xcschemes/JBTabBarAnimation-Example.xcscheme -------------------------------------------------------------------------------- /Example/JBTabBarAnimation.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JBTabBarAnimation.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/Animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation/Animation.gif -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation/AppDelegate.swift -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation/Info.plist -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/Screen_Shot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation/Screen_Shot_1.png -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/Screen_Shot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation/Screen_Shot_2.png -------------------------------------------------------------------------------- /Example/JBTabBarAnimation/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/JBTabBarAnimation/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/JBTabBarAnimation.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Local Podspecs/JBTabBarAnimation.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/JBTabBarAnimation/JBTabBarAnimation.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Example/Pods-JBTabBarAnimation_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Pods/Target Support Files/Pods-JBTabBarAnimation_Tests/Pods-JBTabBarAnimation_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /JBTabBarAnimation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/JBTabBarAnimation.podspec -------------------------------------------------------------------------------- /JBTabBarAnimation/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JBTabBarAnimation/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JBTabBarAnimation/Classes/CircleLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/JBTabBarAnimation/Classes/CircleLayer.swift -------------------------------------------------------------------------------- /JBTabBarAnimation/Classes/JBTabBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/JBTabBarAnimation/Classes/JBTabBar.swift -------------------------------------------------------------------------------- /JBTabBarAnimation/Classes/JBTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/JBTabBarAnimation/Classes/JBTabBarController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithinpala/JBTabBarAnimation/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------