我以编程方式创建了一个导航控制器,
//Creating AddViewController Object
addViewController *addView = [[addViewController alloc]init];
UINavigationController *addViewControl = [[UINavigationController alloc]init];
[addViewControl.view addSubview:addView.view];
[self presentModalViewController:addViewControl animated:YES];
但是当我在 addViewController 类中添加 self.title = @"Title" 时。它没有显示。
我尝试了以下方法,
self.navigationItem.title = @"Title";
self.navigationController.navigationBar.topItem.title = @"Title";
但它不显示标题。
我认为可以设置标签。但以上一种是直接方法。
任何的想法..