我不确定这个错误来自何处,当我回到导航控制器并转到上一个屏幕时,我发现它与viewWillAppear
中的某些内容有关但这就是全部在其中
self.view.backgroundColor = mainColor;
self.topView.backgroundColor = mainColor;
[self.navigationController.navigationBar setBarTintColor:offSetColor];
profileBtn.tintColor = tempColor;
[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
[UIFont fontWithName:@"Helvetica-Bold" size:18], NSFontAttributeName,tempColor,
NSForegroundColorAttributeName, nil]];
self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"" style:UIBarButtonItemStylePlain target:nil action:nil];
[imageView setImage:self.homeImage];
self.title = self.titleReal;
当我第一次在第一次正常工作时返回到此屏幕时,不确定第二次有什么问题可能导致问题?
感谢您的帮助