viewDidLoad のナビゲーション バーにカスタム titleView を使用しています。コードは次のとおりです。
UILabel *titleView = [[UILabel alloc] initWithFrame:CGRectMake(50, 0, 220, 44)];
titleView.text = @"Hello";
titleView.textAlignment = NSTextAlignmentCenter;
self.navigationItem.titleView = titleView;
しかし、後でこのタイトル テキストをプログラムで変更したいので、いくつかの方法を試しましたが成功しませんでした。
self.navigationItem.titleView.text = @"Loading...";
self.navigationItem.title = @"Loading...";
カスタム titleView のタイトル テキストを変更するにはどうすればよいですか?