I shift my TabBar
to top like bellow:
class RootMainFatherTabBarUITabBarController: UITabBarController {
override func viewDidLoad() {
super.viewDidLoad()
}
override func viewWillLayoutSubviews() {
//Shift tabs to top page
tabBar.frame = CGRect(x: 0, y: 0, width: tabBar.frame.size.width, height: tabBar.frame.size.height)
super.viewWillLayoutSubviews()
}
}
But TabBar
overlay on view and i can't see segue
!