我有一个UIViewController子类.我在viewDidLoad中给视图控制器一个rightBarButtonItem,如下所示:
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Difficulty" style:UIBarButtonItemStylePlain target:nil action:nil];
当用户按下视图中的另一个按钮时,UIBarButtonItem的标题/文本改变如下:
self.navigationItem.rightBarButtonItem.title = @"Mellansvår";
它工作正常,但是当标题改变时,看起来不是很好.文字跳了一下.
我以前在运行时改变了UILabel文本,当我改变它们的文本看起来不像这样,但我不知道如何添加一个UILabel到navigationItem.我不能在Interface Builder中执行,因为导航栏来自于一个UINavigationController.
有没有办法更顺利地改变标题?