gpt4 book ai didi

ios - 导航栏自行更改栏

转载 作者:行者123 更新时间:2023-12-01 18:10:46 25 4
gpt4 key购买 nike

我有一个包含 UITTableView 的 UIViewController 。

enter image description here

我使用 block 从 View Controller 推送新 View :

_noviyVC.presentPlease = ^(UIViewController *controller)
{
[weakself.navigationController pushViewController:controller animated:YES];
};

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];

ProfileVCC *profile = [[ProfileVCC alloc] init];
profile.userId = _users[indexPath.row][@"id"];

if (self.presentPlease)
{
self.presentPlease(profile);
}
}

但最后我得到了这个:

enter image description here

导航栏颜色变为黑色。我做错什么了?

最佳答案

self.navigationController.navigationBar.barTintColor=ColorNav;
self.navigationController.navigationBar.translucent=FALSE;

关于ios - 导航栏自行更改栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31966047/

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