gpt4 book ai didi

iphone - 导航栏没有出现在我的 ViewController 上

转载 作者:行者123 更新时间:2023-12-03 20:58:19 24 4
gpt4 key购买 nike

我有一个以模态方式呈现的 UIViewController。 UIViewController 位于 UINavigationController 内部。

// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
[super viewDidLoad];

saveButton = [[UIBarButtonItem alloc] initWithTitle:@"Save"
style:UIBarButtonItemStyleBordered
target:self
action:@selector(saveButtonClicked:)];


self.navigationItem.rightBarButtonItem = saveButton;
self.navigationController.navigationBar.tintColor = [UIColor colorWithRed:(102.0/255.0) green:(20.0/255.0) blue:(11.0/255.0) alpha:1];
self.title = @"Login";
//toolbar.tintColor = [UIColor colorWithRed:(102.0/255.0) green:(20.0/255.0) blue:(11.0/255.0) alpha:1];
}

为什么我的导航栏没有显示文本登录和右侧的保存按钮?

最佳答案

听起来您可能正在呈现 View Controller 而不是导航 Controller 。用于呈现您所描述的 View Controller 的代码应如下所示:

MyViewController *viewController = [[MyViewController alloc] init];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
[self presentModalViewController:navController animated:YES];
[viewController release];
[navController release];

关于iphone - 导航栏没有出现在我的 ViewController 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3274509/

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