I'm trying to set to a UITabItem's view controller the Cover Vertical Transition style. I've set it up when setting the tab bar view controllers and also in the view controller's viewWillAppear but it doesn't work.
I've tried doing
self.viewControllers?[2].modalTransitionStyle = .coverVertical
and
self.modalTransitionStyle = .coverVertical
in the viewWillAppear of the specific ViewController
How can I accomplish this?