奇怪的大标题导航控制器问题

时间:2017-10-14 09:23:22

标签: ios swift xcode

问题

I am having this problem。它只发生在我不在表格视图的顶部时。当我处于最顶层时,完全没问题。

•我也在真实的设备上试过这个,但没有运气。

•我认为单元格背后的阴影可能会导致它,但删除它也不起作用。

•如果没有大标题,它可以正常工作,但我也希望实现大型标题功能。

我没有以编程方式显示secondViewController。但是回到firstViewController我使用这段代码:

navigationController?.popViewController(animated: true)

1 个答案:

答案 0 :(得分:2)

发现了问题!

secondViewController上将背景颜色设置为白色可解决问题。

将其添加到secondViewController

中的viewDidLoad
override func viewDidLoad() {
    super.viewDidLoad()
    self.navigationController?.view.backgroundColor = UIColor.white }