[MAPSME-6625] [ios] Fixed search filters layout issue.

This commit is contained in:
Ilya Grechuhin 2018-01-29 13:19:29 +03:00 committed by Roman Kuznetsov
parent 0cce71cbe6
commit 22376c6717

View file

@ -15,7 +15,10 @@ final class FilterCollectionHolderCell: MWMTableViewCell {
private func layout() {
collectionView.setNeedsLayout()
collectionView.layoutIfNeeded()
collectionViewHeight.constant = collectionView.contentSize.height
if collectionViewHeight.constant != collectionView.contentSize.height {
collectionViewHeight.constant = collectionView.contentSize.height
frame.size.height = collectionViewHeight.constant
}
}
@objc func config(tableView: UITableView?) {