KYWheelTabController alternatives and similar libraries
Based on the "Tab Bar" category.
Alternatively, view KYWheelTabController alternatives based on common mentions on social networks and blogs.
-
animated-tab-bar
RAMAnimatedTabBarController is a Swift module for adding animation to tabbar items. -
adaptive-tab-bar
AdaptiveController is a 'Progressive Reduction' Swift module for adding custom states to Native or Custom iOS UI elements -
TabPageViewController
Paging view controller and scroll tab view. -
SwipeableTabBarController
UITabBarController with swipe interaction between its tabs. -
SwipeViewController
SwipeViewController is a Swift modification of RKSwipeBetweenViewControllers -
TabDrawer
Customizable TabBar UI element that allows you to run a block of code upon TabBarItem selection, written in Swift -
ExpandedTabBar
Very creative designed solution for "more" items in UITabBarController -
WormTabStrip
WormTabStrip Beatiful ViewPager For iOS written in Swift -
GGTabBar
Another UITabBar & UITabBarController (iOS Tab Bar) replacement, but uses Auto Layout for arranging it's views hierarchy. -
ESTabBarController
A tab bar controller for iOS that allows highlighting buttons and setting custom actions to them. -
BEKCurveTabbar
compatible with XCode +10 and fully customizable via Interface_Builder panel. BEKCurveTabBar derived UITabBar class and compatible with every iOS devices. -
SSCustomTabMenu
Simple customizable iOS bottom menu with Tabbar. -
SuperBadges
Add emojis and colored dots as badges for your Tab Bar buttons
Get performance insights in less than 4 minutes
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of KYWheelTabController or a related project?
README
KYWheelTabController
KYWheelTabController
is a subclass of UITabBarController.It displays the circular menu instead of UITabBar.
[sample.gif](./Images/sample.gif "sample.png")
Installation
CocoaPods
KYWheelTabController
is available on CocoaPods.
Add the following to your Podfile
:
pod 'KYWheelTabController'
Manually
Just add the Classes folder to your project.
Usage
It can be used in the same way as UITabBarController.
tabBarItem.title
is not support.tabBarItem.imageInsets
is not support.tabBarItem.badgeValue
is not support.
Code
import UIKit
import KYWheelTabController
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
let vc0 = UIViewController()
vc0.tabBarItem = UITabBarItem(
title: nil,
image: UIImage(named: "sample0"),
selectedImage: UIImage(named: "sample0_selected"))
let vc1 = UIViewController()
vc1.tabBarItem = UITabBarItem(
title: nil,
image: UIImage(named: "sample1"),
selectedImage: UIImage(named: "sample1_selected"))
let vc2 = UIViewController()
vc2.tabBarItem = UITabBarItem(
title: nil,
image: UIImage(named: "sample2"),
selectedImage: UIImage(named: "sample2_selected"))
let vc3 = UIViewController()
vc3.tabBarItem = UITabBarItem(
title: nil,
image: UIImage(named: "sample3"),
selectedImage: UIImage(named: "sample3_selected"))
let wheelTabController = KYWheelTabController()
wheelTabController.viewControllers = [vc0, vc1, vc2, vc3]
/* Customize
// selected boardre color.
wheelTabController.tintColor = UIColor.redColor()
*/
window?.rootViewController = wheelTabController
return true
}
Storyboard
- Set the
KYWheelTabController
to Custom Class of UITabBarController.
[sample2.gif](./Images/sample2.gif "sample2.gif")
License
This code is distributed under the terms and conditions of the [MIT license](LICENSE).
*Note that all licence references and agreements mentioned in the KYWheelTabController README section above
are relevant to that project's source code only.