I am having this problem。它只发生在我不在表格视图的顶部时。当我处于最顶层时,完全没问题。
•我也在真实的设备上试过这个,但没有运气。
•我认为单元格背后的阴影可能会导致它,但删除它也不起作用。
•如果没有大标题,它可以正常工作,但我也希望实现大型标题功能。
我没有以编程方式显示secondViewController
。但是回到firstViewController
我使用这段代码:
navigationController?.popViewController(animated: true)
答案 0 :(得分:2)
发现了问题!
在secondViewController
上将背景颜色设置为白色可解决问题。
将其添加到secondViewController
viewDidLoad
override func viewDidLoad() {
super.viewDidLoad()
self.navigationController?.view.backgroundColor = UIColor.white }