0
我有一個UITabBarController,裏面有兩個UIViewController。 如何初始化UIViewController不顯示一部分是在UITabBar下面?UITabBar over UIViewController
編輯:
AppDelegate.m:
ViewController *viewController = [[ViewController alloc] init];
self.tabController = [[UITabBarController alloc] init];
[self.tabController setViewControllers:@[viewController] animated:YES];
self.window.rootViewController = self.tabController;
ViewController.m:
- (void)viewDidLoad {
[super viewDidLoad];
[self.view addSubview: [[MyGraphicView alloc] initWithFrame:[self.view bounds]]];
}
請澄清你的問題。你能提供你使用的代碼嗎?如果我理解正確的話,你會遇到佈局問題。你可以提供截圖嗎? –
除了提供截圖爲@Julian問,你如何設置你的'UIViewController'的'frame'和/或'bounds'? –