├── .gitignore ├── LICENSE ├── README.md ├── ScrollingTabBarDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ScrollingTabBarDemo ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ScrollingTabBarUtils.swift └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklinsch/iOSScrollingTabBarAnimation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklinsch/iOSScrollingTabBarAnimation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklinsch/iOSScrollingTabBarAnimation/HEAD/README.md -------------------------------------------------------------------------------- /ScrollingTabBarDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklinsch/iOSScrollingTabBarAnimation/HEAD/ScrollingTabBarDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ScrollingTabBarDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklinsch/iOSScrollingTabBarAnimation/HEAD/ScrollingTabBarDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ScrollingTabBarDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklinsch/iOSScrollingTabBarAnimation/HEAD/ScrollingTabBarDemo/AppDelegate.swift -------------------------------------------------------------------------------- /ScrollingTabBarDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklinsch/iOSScrollingTabBarAnimation/HEAD/ScrollingTabBarDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ScrollingTabBarDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklinsch/iOSScrollingTabBarAnimation/HEAD/ScrollingTabBarDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ScrollingTabBarDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklinsch/iOSScrollingTabBarAnimation/HEAD/ScrollingTabBarDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ScrollingTabBarDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklinsch/iOSScrollingTabBarAnimation/HEAD/ScrollingTabBarDemo/Info.plist -------------------------------------------------------------------------------- /ScrollingTabBarDemo/ScrollingTabBarUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklinsch/iOSScrollingTabBarAnimation/HEAD/ScrollingTabBarDemo/ScrollingTabBarUtils.swift -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklinsch/iOSScrollingTabBarAnimation/HEAD/demo.gif --------------------------------------------------------------------------------