├── .DS_Store ├── .gitignore ├── CustomTabBarProduct.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── CustomTabBarProduct ├── .DS_Store ├── AWTabbar │ ├── .DS_Store │ ├── AWLineTabBarController.h │ └── AWLineTabBarController.m ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── tabbar_home.imageset │ │ ├── Contents.json │ │ ├── tabbar_home@2x.png │ │ └── tabbar_home@3x.png │ └── tabbar_homeSelect.imageset │ │ ├── Contents.json │ │ ├── tabbar_homeSelect@2x.png │ │ └── tabbar_homeSelect@3x.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── CustomTabBarProductTests ├── CustomTabBarProductTests.m └── Info.plist ├── CustomTabBarProductUITests ├── CustomTabBarProductUITests.m └── Info.plist ├── README.md └── showPic.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/.gitignore -------------------------------------------------------------------------------- /CustomTabBarProduct.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CustomTabBarProduct.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CustomTabBarProduct.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CustomTabBarProduct/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/.DS_Store -------------------------------------------------------------------------------- /CustomTabBarProduct/AWTabbar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/AWTabbar/.DS_Store -------------------------------------------------------------------------------- /CustomTabBarProduct/AWTabbar/AWLineTabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/AWTabbar/AWLineTabBarController.h -------------------------------------------------------------------------------- /CustomTabBarProduct/AWTabbar/AWLineTabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/AWTabbar/AWLineTabBarController.m -------------------------------------------------------------------------------- /CustomTabBarProduct/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/AppDelegate.h -------------------------------------------------------------------------------- /CustomTabBarProduct/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/AppDelegate.m -------------------------------------------------------------------------------- /CustomTabBarProduct/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CustomTabBarProduct/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CustomTabBarProduct/Assets.xcassets/tabbar_home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/Assets.xcassets/tabbar_home.imageset/Contents.json -------------------------------------------------------------------------------- /CustomTabBarProduct/Assets.xcassets/tabbar_home.imageset/tabbar_home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/Assets.xcassets/tabbar_home.imageset/tabbar_home@2x.png -------------------------------------------------------------------------------- /CustomTabBarProduct/Assets.xcassets/tabbar_home.imageset/tabbar_home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/Assets.xcassets/tabbar_home.imageset/tabbar_home@3x.png -------------------------------------------------------------------------------- /CustomTabBarProduct/Assets.xcassets/tabbar_homeSelect.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/Assets.xcassets/tabbar_homeSelect.imageset/Contents.json -------------------------------------------------------------------------------- /CustomTabBarProduct/Assets.xcassets/tabbar_homeSelect.imageset/tabbar_homeSelect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/Assets.xcassets/tabbar_homeSelect.imageset/tabbar_homeSelect@2x.png -------------------------------------------------------------------------------- /CustomTabBarProduct/Assets.xcassets/tabbar_homeSelect.imageset/tabbar_homeSelect@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/Assets.xcassets/tabbar_homeSelect.imageset/tabbar_homeSelect@3x.png -------------------------------------------------------------------------------- /CustomTabBarProduct/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CustomTabBarProduct/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/Info.plist -------------------------------------------------------------------------------- /CustomTabBarProduct/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/ViewController.h -------------------------------------------------------------------------------- /CustomTabBarProduct/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/ViewController.m -------------------------------------------------------------------------------- /CustomTabBarProduct/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProduct/main.m -------------------------------------------------------------------------------- /CustomTabBarProductTests/CustomTabBarProductTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProductTests/CustomTabBarProductTests.m -------------------------------------------------------------------------------- /CustomTabBarProductTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProductTests/Info.plist -------------------------------------------------------------------------------- /CustomTabBarProductUITests/CustomTabBarProductUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProductUITests/CustomTabBarProductUITests.m -------------------------------------------------------------------------------- /CustomTabBarProductUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/CustomTabBarProductUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/README.md -------------------------------------------------------------------------------- /showPic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioswei/CustomTabbar/HEAD/showPic.gif --------------------------------------------------------------------------------