为什么这段代码没有在我的 UIView 上生成 UINavigationBar?
//create the view
UIView *view = [[UIView alloc] init];
view.backgroundColor = [UIColor whiteColor];
//everything for tabbar
UINavigationBar *navBar = [[UINavigationBar alloc] init];
//add the components to the view
[view addSubview: navBar];
//show the view
self.view = view;
我看到白色视图但没有导航栏。有什么帮助吗?我究竟做错了什么?