我有一个以编程方式使用的 UItabviewcontroller 的代码,但是如何在我需要 x、y 宽度和高度坐标的应用程序中用作子视图时创建它的框架。
UITabBarController *tabBarController = [[UITabBarController alloc] init];
UIViewController *vc1 = [[UIViewController alloc] init];
UIViewController *vc2 = [[UIViewController alloc] init];
UIView *v1 = [[UIView alloc] init];
UIView *v2 = [[UIView alloc] init];
vc1.title = @"vc1";
vc2.title = @"vc2";
tabBarController.viewControllers = [[NSArray alloc] initWithObjects:vc1, vc2, nil];
self.view = tabBarController.view;