How can I switch to some tab in UITabBarController using StoryBoard? I have tried the code below but without success (the tab is not selected):
UITabBarController
I'm using IBInspected in LSwift:
LSwift
extension UITabBarController { @IBInspectable var selected_index: Int { get { return selectedIndex } set(index) { selectedIndex = index } } }