ここで考えられることはすべて試しました。
self.navigationBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
self.navigationBar.autoresizingMask = UIViewAutoresizingFlexibleWidth;
self.navigationBar.topItem.title = @"Title";
self.navigationItem.title = @"Title";
self.title = @"Title";
self.navigationBar.topItem.titleView.backgroundColor = [UIColor blueColor];
self.navigationController.navigationBar.topItem.title = @"Title";
[self.view addSubview:self.navigationBar];
いずれかが機能することを期待してこれらすべてを試しましたが、どれも機能しませんでした。このナビゲーション バーのタイトルを変更するにはどうすればよいですか? これは、UIViewController の init メソッド内にあります。