gpt4 book ai didi

iphone - UINavigationController 中的 "title"问题

转载 作者:行者123 更新时间:2023-11-28 23:16:20 25 4
gpt4 key购买 nike

我在标题和 UINavigationController 方面遇到问题。我在 UIViewControllerCurrent 使用以下代码,当我从 NextViewController 返回时,NavBar 的标题仍然是“Previous”。任何人都可以帮我解决这个问题吗?谢谢。

[self setTitle:@"Previous"]; 
NextViewController *controller = [[NextViewController alloc] init];
[[self navigationController] pushViewController:controller animated:YES];
[controller release], controller = nil;

- (void)viewWillAppear:(BOOL)animated; {
[self setTitle:@"Real Title"];
[super viewWillAppear:animated]; }

最佳答案

我会尝试交换两条线路

[self setTitle:@"Real Title"];     
[super viewWillAppear:animated];

让你得到

[super viewDidAppear:animated];
[self setTitle:@"Real Title"];

我会将这些放入 viewDidAppear。

关于iphone - UINavigationController 中的 "title"问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6214941/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com