I want to create a UIView for a UITabBarController
UIView
UITabBarController
Here is my code for the .h file :
.h
@interface TE : UIViewContro
Change self.view = tabBarController.view; to [self.view addSubview:tabBarController.view]; And it works correctly
self.view = tabBarController.view;
[self.view addSubview:tabBarController.view];