I need to use a subclass of the UITabBar for my project because of the following problem Why page Push animation Tabbar moving up in the iPhone X.
I do not use stor
You should create an instance of your custom tab bar and override the tabBar property inside your UITabBarController subclass with it.
class CustomTabBarController: UITabBarController { let customTabBar = CustomTabBar() override var tabBar: UITabBar { return customTabBar } }