iOS 选项卡:GGTabBar
                 jopen
                 11年前
            
                    GGTabBar 是可定制的 UITabBar 或者 UITabBarController,替代 100% 由 Auto Layout 制作。Forget CGRects 和 frames。GGTabBar 完全由 Objective-C 编写,但是可以在 Swift 中使用。
GGTabBarController *tabBar = [[GGTabBarController alloc] init];  tabBar.tabBarAppearanceSettings = @{kTabBarAppearanceHeight : @(100.0)}; // in points  tabBar.viewControllers = @[vc1, vc2, vc3, vc4];  self.window.rootViewController = tabBar;   