标签: uitableview swift3 uiimageview autolayout xcode8
我试图解决这个问题很久了:( 它是表格视图中的imageView 没有错误,没有Autolayout丢失 但左侧的内容视图显示为黄色
答案 0 :(得分:1)
你可以这样写:
在viewDidLoad()中:
self.automaticallyAdjustsScrollViewInsets = false
OR
tableView.contentInset = UIEdgeInsets.zero
self.tableView.contentInset = UIEdgeInsetsMake(-65, 0, 0, 0)
在InterfaceBuilder中: