我有UITableView
使用UITableViewAutomaticDimension
和AutoLayout约束的自定义单元格高度。在一个原型单元格中,我需要添加UICollectionView
UICollectionViewFlowLayout
,它将在单个列中为紧凑大小类垂直布局单元格,或者在常规大小类的3列网格中。因此,集合视图的高度是动态的,即使在iPhone 6 Plus(Compact-> Regular)上旋转,布局也可能会发生变化。
我在storyboard中使用自定义原型单元设置我的tableview,并将自定义collectionview添加到原型单元格中,AutoLayout约束始终为零到超级视图的相应边缘(前导,尾随,顶部,底部= 0到superview)。 .collectionView-> tableviewContentView-> tableviewCell。
我需要集合视图的可变高度来驱动tableview原型单元格的高度。到目前为止,我总是在运行时收到以下AutoLayout错误。
Warning once only: Detected a case where constraints ambiguously suggest a height of zero for a tableview cell's content view. We're considering the collapse unintentional and using standard height instead.
请您建议正确的方法吗?谢谢!
主TableViewController:
class TableViewController: UITableViewController {
override func viewDidLoad() {
super.viewDidLoad()
tableView.estimatedRowHeight = 200.0
tableView.rowHeight = UITableViewAutomaticDimension
}
/// ... plus tableview datasource functions
}
的CollectionView:
class AttachmentCollectionView: UICollectionView, UICollectionViewDataSource, UICollectionViewDelegate {
override func awakeFromNib() {
let nib = UINib(nibName: Constants.AttachmentCollectionView.cellNibName, bundle: nil)
registerNib(nib, forCellWithReuseIdentifier: Constants.AttachmentCollectionView.cellIdentifier)
collectionViewLayout = attachmentFlowLayout()
dataSource = self
delegate = self
backgroundColor = UIColor.whiteColor()
}
private func attachmentFlowLayout() -> UICollectionViewFlowLayout {
let layout = UICollectionViewFlowLayout()
layout.scrollDirection = .Vertical
layout.itemSize = CGSize(width: 70, height: 50)
layout.sectionInset = UIEdgeInsets(top: 0.0, left: 0.0, bottom: 0.0, right: 0.0)
layout.minimumLineSpacing = 0.0
layout.minimumInteritemSpacing = 0.0
layout.headerReferenceSize = CGSizeMake(0.0, 0.0)
layout.footerReferenceSize = CGSizeMake(0.0, 0.0)
return layout
}
// ...plus collectionview datasource functions
}
答案 0 :(得分:1)
我认为实现tableView的委托方法tableView(_ tableView: UITableView,
heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat
可能会有效。