我在方案上设立了一个导航控制员,
//Creating AddViewController Object
addViewController *addView = [[addViewController alloc]init];
UINavigationController *addViewControl = [[UINavigationController alloc]init];
[addViewControl.view addSubview:addView.view];
[self presentModalViewController:addViewControl animated:YES];
但是,如果在添加“Controller”类的字句中添加自称=“Title”。 它没有显示。
i 审判如下:
self.navigationItem.title = @"Title";
self.navigationController.navigationBar.topItem.title = @"Title";
但它没有显示标题。
我认为,可以确定标签。 但以上是直接方法。
任何想法。