正如您在第四个 ViewController 中看到的那样,我有一个“ Back ”UIBarButtonItem
Back按钮连接到 IBAction :
- (IBAction)backClicked:(UIBarButtonItem *)sender
{
[self.navigationController popViewControllerAnimated:YES];
}
但是当我popViewControllerAnimated:
从第四个 ViewController 调用返回到第三个 ViewController 时,它会更改 Tab Bar Tab 的UINavigationBar
tintColor 的原始颜色。UITabBarController 的原始导航栏 tintColor 被AppDelegate设置为绿色,并且弹出将其更改为深灰色(第 4 个 VC 导航栏的颜色)
打电话时如何不丢失导航栏色调popViewControllerAnimated:
?请帮忙,我这几天一直在努力解决这个问题。