SETabView icon indicating copy to clipboard operation
SETabView copied to clipboard

SETabView is a TabBar with simple yet beautiful animations that makes your apps look cool!

Results 3 SETabView issues
Sort by recently updated
recently updated
newest added

TabItem title is not showing in tabbar import UIKit import SETabView class FourthViewController: UIViewController { var seTabBarItem: UITabBarItem! { return UITabBarItem(title: "Fourth", image: UIImage(named: "fourth"), tag: 0) } override func...

When applying ``` if let tabBar = self.parent?.parent as? AppTabBarController { tabBar.hideTabBars() } ``` tabbar hides itself but space still remains. AppTabbarController is my tabbar controller which extends SETabViewController.

I tried adding the badge to tabicon, but its not showing up. tried tabItem?.badgeValue. private func setTabIcons() { _tabBar.tabImages = _viewControllers.map({ (viewController) -> UIImage in var tabItem: UITabBarItem? if let...