SSCustomTabMenu alternatives and similar libraries
Based on the "Tab Bar" category.
Alternatively, view SSCustomTabMenu alternatives based on common mentions on social networks and blogs.
-
animated-tab-bar
:octocat: RAMAnimatedTabBarController is a Swift UI module library for adding animation to iOS tabbar items and icons. iOS library made by @Ramotion -
adaptive-tab-bar
:octocat: AdaptiveController is a 'Progressive Reduction' Swift UI module for adding custom states to Native or Custom iOS UI elements. Swift UI component by @Ramotion -
SwipeViewController
SwipeViewController is a Swift modification of RKSwipeBetweenViewControllers - navigate between pages / ViewControllers -
TabDrawer
Customizable TabBar UI element that allows you to run a block of code upon TabBarItem selection, written in Swift -
ExpandedTabBar
ExpandedTabBar is a very creative designed solution for "more" items in UITabBarController. It's greate experience to have more comfortable and intuitive UI. -
CardTabBar
This library is for adding animation to iOS tabbar items, which is inherited from UITabBarController. -
WormTabStrip
🐛 WormTabStrip ViewPager for iOS written in Swift, which gives continuous feedback to the user when scrolling -
GGTabBar
Another UITabBar & UITabBarController (iOS Tab Bar) replacement, but uses Auto Layout for arranging it's views hierarchy. -
KYWheelTabController
KYWheelTabController is a subclass of UITabBarController.It displays the circular menu instead of UITabBar.
InfluxDB high-performance time series database

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of SSCustomTabMenu or a related project?
README
SSCustomTabMenu
Simple customizable iOS bottom menu works like Tabbar, in Swift.
Features
- [x] Simple and customizable iOS Tab Menu items, in Swift.
Requirements
- iOS 9.0+
- Xcode 9.0
Installation
CocoaPods
You can use CocoaPods to install SSCustomTabMenu
by adding it to your Podfile
:
platform :ios, '9.0'
use_frameworks!
pod 'SSCustomTabMenu'
To get the full benefits import YourLibrary
wherever you import UIKit
import UIKit
import SSCustomTabMenu
Manually
- Download and drop
CustomTabMenu
in your project. - Congratulations!
Usage example
Into your Appdelegate
import SSCustomTabMenu
and add below two lines
let MyDelegate = UIApplication.shared.delegate as! AppDelegate
var navController:UINavigationController!
Add below code into didFinishLaunchingWithOptions
Initiate your controller
let homeVC = storyBoard.MainStoryboard?.instantiateViewController(withIdentifier: "HomeVC")
let musicVC = storyBoard.MainStoryboard?.instantiateViewController(withIdentifier: "MusicVC")
let profileVC = storyBoard.MainStoryboard?.instantiateViewController(withIdentifier: "ProfileVC")
let eventsVC = storyBoard.MainStoryboard?.instantiateViewController(withIdentifier: "EventsVC")
let artistsVC = storyBoard.MainStoryboard?.instantiateViewController(withIdentifier: "ArtistsVC")
let fanFinderVC = storyBoard.MainStoryboard?.instantiateViewController(withIdentifier: "FanFinderVC")
Initiate TabMenuVC
let tabController = UIStoryboard.TabMenuStoryboard.instantiateViewController(withIdentifier: "TabMenuVC") as! TabMenuVC
Set Menu Items with Title and image name
tabController.arrMenuItems[1] = MenuItem(viewControllerforMenu:Krewes, imageName: "Home", menuItemTitle: "HOME")
tabController.arrMenuItems[2] = MenuItem(viewControllerforMenu:Krewes, imageName: "Krews", menuItemTitle: "KREWS")
tabController.arrMenuItems[3] = MenuItem(viewControllerforMenu:Krewes, imageName: "Profile", menuItemTitle: "PROFILE")
tabController.arrMenuItems[4] = MenuItem(viewControllerforMenu:Krewes, imageName: "Events", menuItemTitle: "EVENTS")
tabController.arrMenuItems[5] = MenuItem(viewControllerforMenu:Krewes, imageName: "Artists", menuItemTitle: "ARTISTS")
tabController.arrMenuItems[6] = MenuItem(viewControllerforMenu:Krewes, imageName: "Fan Finder", menuItemTitle: "FAN FINDER")
Add Center and Right TabBarItem
tabController.centerTab = plusVC
tabController.RightTab = musicVC
Add tabController as rootViewController
self.window!.rootViewController = tabController
Contribute
We would love you for the contribution to SSCustomTabMenu, check the LICENSE file for more info.
Meta
Distributed under the MIT license. See LICENSE
for more information.
*Note that all licence references and agreements mentioned in the SSCustomTabMenu README section above
are relevant to that project's source code only.