我希望scrollview
将 my 添加为UINavigationBar's titleview
,但奇怪的是我无法这样做。
在 viewDidLoad 中:
navController = [[UINavigationController alloc] init];
self.view.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height - 20 - 45 - 2);
CGRect frame = navController.view.frame;
frame.size.height -= 20;
[self.view addSubview:navController.view];
UIScrollView *someview = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 44)];
someview.backgroundColor = [UIColor orangeColor];
navController.navigationItem.titleView = someview;
这是一段非常简单的代码,但我无法弄清楚我缺少什么。请有人帮助我...谢谢。
旁注:我在UINavigationController
没有任何根控制器的情况下启动,因为我首先关心的是向导航栏添加滚动视图。