An open API service indexing awesome lists of open source software.

https://github.com/bionelabs/tabbarviewcontroller

Rotate TabbarViewController
https://github.com/bionelabs/tabbarviewcontroller

swift tabbar uitabbar uitabbarcontroller xcode

Last synced: 2 months ago
JSON representation

Rotate TabbarViewController

Awesome Lists containing this project

README

        

# TabbarViewController
Rotate TabbarViewController

## Demo


## Installation

### CocoaPods
Soon

### How to use

```swift

import UIKit
import TabbarViewController

class ViewController: TabbarViewController {

let ViewControllerA = MenuViewController()
let ViewControllerB = MenuViewController()
let ViewControllerC = MenuViewController()
let ViewControllerD = MenuViewController()
let ViewControllerE = MenuViewController()

override func loadView() {
super.loadView()

ViewControllerA.tabBarItem = UITabBarItem(
title: "Home",
image: UIImage(named:"home"),
selectedImage: nil)
ViewControllerB.tabBarItem = UITabBarItem(
title: "Media",
image: UIImage(named:"backup-media"),
selectedImage: nil)
ViewControllerC.tabBarItem = UITabBarItem(
title: "Reminder",
image: UIImage(named:"reminder"),
selectedImage: nil)
ViewControllerD.tabBarItem = UITabBarItem(
title: "Setting",
image: UIImage(named:"tabbar-setting"),
selectedImage: nil)
ViewControllerE.tabBarItem = UITabBarItem(
title: "Podcast",
image: UIImage(named:"tabbar-setting"),
selectedImage: nil)

ViewControllerA.view.backgroundColor = UIColor("F6F9FE")
ViewControllerB.view.backgroundColor = UIColor("b1cbf6")
ViewControllerC.view.backgroundColor = UIColor("c8daf9")
ViewControllerD.view.backgroundColor = UIColor("dfeafb")
ViewControllerE.view.backgroundColor = UIColor("ffffff")

self.viewControllers = [ViewControllerA,
ViewControllerB,
ViewControllerC,
ViewControllerD]

}

}

```

## Contact
- Email: [email protected]
- Site: https://onebuffer.com
- Linkedin: https://www.linkedin.com/in/caophuocthanh/