Hello, first congratulations for the project.
There is a problem when using UITabBarController inside UINavigationController. The log shows the following warning:
Two-stage rotation animation is deprecated. This application should use the smoother single-stage animation.
UITabBarController documentation
Because the UITabBarController class inherits from the UIViewController class, tab bar controllers have their own view that is accessible through the view property. When deploying a tab bar interface, you must install this view as the root of your window. Unlike other view controllers, a tab bar interface should never be installed as a child of another view controller.
On the other hand we could reuse views?
Like: SwipeView
Thank you very much.
Hello, first congratulations for the project.
There is a problem when using UITabBarController inside UINavigationController. The log shows the following warning:
Two-stage rotation animation is deprecated. This application should use the smoother single-stage animation.
UITabBarController documentation
Because the UITabBarController class inherits from the UIViewController class, tab bar controllers have their own view that is accessible through the view property. When deploying a tab bar interface, you must install this view as the root of your window. Unlike other view controllers, a tab bar interface should never be installed as a child of another view controller.
On the other hand we could reuse views?
Like: SwipeView
Thank you very much.