├── .gitignore ├── LICENSE ├── README.md ├── XXXTabbarController ├── CustomEasingAnimation │ ├── CustomEasingAnimation.h │ ├── CustomEasingAnimation.m │ ├── bezier.c │ └── bezier.h ├── XXXTabbar.h ├── XXXTabbar.m ├── XXXTabbarController.h └── XXXTabbarController.m ├── demo ├── CustomEasingAnimation.h ├── CustomEasingAnimation.m ├── XXXTabbar.h ├── XXXTabbar.m ├── XXXTabbarController.h ├── XXXTabbarController.m ├── bezier.c ├── bezier.h ├── demo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── i1.imageset │ │ ├── Contents.json │ │ └── i1@2x.png │ ├── i2.imageset │ │ ├── Contents.json │ │ └── i2@2x.png │ ├── i3.imageset │ │ ├── Contents.json │ │ └── i3@2x.png │ └── i4.imageset │ │ ├── Contents.json │ │ └── i4@2x.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── intro.png └── tabbar.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/README.md -------------------------------------------------------------------------------- /XXXTabbarController/CustomEasingAnimation/CustomEasingAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/XXXTabbarController/CustomEasingAnimation/CustomEasingAnimation.h -------------------------------------------------------------------------------- /XXXTabbarController/CustomEasingAnimation/CustomEasingAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/XXXTabbarController/CustomEasingAnimation/CustomEasingAnimation.m -------------------------------------------------------------------------------- /XXXTabbarController/CustomEasingAnimation/bezier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/XXXTabbarController/CustomEasingAnimation/bezier.c -------------------------------------------------------------------------------- /XXXTabbarController/CustomEasingAnimation/bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/XXXTabbarController/CustomEasingAnimation/bezier.h -------------------------------------------------------------------------------- /XXXTabbarController/XXXTabbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/XXXTabbarController/XXXTabbar.h -------------------------------------------------------------------------------- /XXXTabbarController/XXXTabbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/XXXTabbarController/XXXTabbar.m -------------------------------------------------------------------------------- /XXXTabbarController/XXXTabbarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/XXXTabbarController/XXXTabbarController.h -------------------------------------------------------------------------------- /XXXTabbarController/XXXTabbarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/XXXTabbarController/XXXTabbarController.m -------------------------------------------------------------------------------- /demo/CustomEasingAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/CustomEasingAnimation.h -------------------------------------------------------------------------------- /demo/CustomEasingAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/CustomEasingAnimation.m -------------------------------------------------------------------------------- /demo/XXXTabbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/XXXTabbar.h -------------------------------------------------------------------------------- /demo/XXXTabbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/XXXTabbar.m -------------------------------------------------------------------------------- /demo/XXXTabbarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/XXXTabbarController.h -------------------------------------------------------------------------------- /demo/XXXTabbarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/XXXTabbarController.m -------------------------------------------------------------------------------- /demo/bezier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/bezier.c -------------------------------------------------------------------------------- /demo/bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/bezier.h -------------------------------------------------------------------------------- /demo/demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /demo/demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /demo/demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/AppDelegate.h -------------------------------------------------------------------------------- /demo/demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/AppDelegate.m -------------------------------------------------------------------------------- /demo/demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/demo/Assets.xcassets/i1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/Assets.xcassets/i1.imageset/Contents.json -------------------------------------------------------------------------------- /demo/demo/Assets.xcassets/i1.imageset/i1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/Assets.xcassets/i1.imageset/i1@2x.png -------------------------------------------------------------------------------- /demo/demo/Assets.xcassets/i2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/Assets.xcassets/i2.imageset/Contents.json -------------------------------------------------------------------------------- /demo/demo/Assets.xcassets/i2.imageset/i2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/Assets.xcassets/i2.imageset/i2@2x.png -------------------------------------------------------------------------------- /demo/demo/Assets.xcassets/i3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/Assets.xcassets/i3.imageset/Contents.json -------------------------------------------------------------------------------- /demo/demo/Assets.xcassets/i3.imageset/i3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/Assets.xcassets/i3.imageset/i3@2x.png -------------------------------------------------------------------------------- /demo/demo/Assets.xcassets/i4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/Assets.xcassets/i4.imageset/Contents.json -------------------------------------------------------------------------------- /demo/demo/Assets.xcassets/i4.imageset/i4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/Assets.xcassets/i4.imageset/i4@2x.png -------------------------------------------------------------------------------- /demo/demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo/demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /demo/demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/Info.plist -------------------------------------------------------------------------------- /demo/demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/ViewController.h -------------------------------------------------------------------------------- /demo/demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/ViewController.m -------------------------------------------------------------------------------- /demo/demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/demo/demo/main.m -------------------------------------------------------------------------------- /intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/intro.png -------------------------------------------------------------------------------- /tabbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsy78191/XXXTabbarController/HEAD/tabbar.gif --------------------------------------------------------------------------------