gpt4 book ai didi

iphone - UINavigationBar问题

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

我在我的 UIView 中添加了一个 UINavigationBar

我正在尝试设置它的标题和它的左栏,但失败了

我使用下面的代码

self.title = @"Edit Table ";
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithTitle:@"Edit" style:UIBarButtonItemStyleBordered target:self action:@selector(EditTable:)];
[self.navigationItem setLeftBarButtonItem:addButton];
[super viewDidLoad];

什么都没有改变,我称这个uiview为

self.NodeSelection = [[NodesList alloc]initWithNibName:@"NodesList" bundle:nil];
[self presentModalViewController:self.NodeSelection animated:YES];

有什么建议吗

最佳答案

更新

调用此 View 使用

[self.navigationController pushViewController:self.NodeSelection animated:YES];

您可以使用此更改 NavigationBar 的标题

self.navigationItem.title = @"Hello";

对于 leftBarButton,您的代码是正确的。

第二次更新

返回父屏

 [self.navigationController popViewControllerAnimated:YES];

关于iphone - UINavigationBar问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6275508/

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