Саморазмер ячейки для вложенных таблиц и коллекций. - PullRequest
0 голосов
/ 14 сентября 2018

Я пытаюсь построить табличное представление, одна из ячеек в этом табличном представлении является виджетом вкладок.поэтому я создаю этот виджет вкладки как CollectionView.Ячейки collectionView имеют разные подпредставления, и каждая ячейка имеет свой собственный размер.

Я пытаюсь добиться самообладания ячеек в collectionView, но это не работает.

Я предоставлю вам способ, которым я пользовался, чтобы получить вашу помощь.

//MARK: TableView
     func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
            return UITableViewAutomaticDimension
    }

 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "DetailsTabs", for: indexPath) as! DetailsTabs /*this cell has 2 collectionViews. The first collectionView is the tabs and the second collectionView is the content that should be diplayed. I gave the first collectionView a fixed height, trailing leading and top. the second collectionView has trailing, leading bottom, and top to the first collectionView*/
        cell.postDetail = postDetail
        cell.widgets = self.Template
        cell.parentController = self
        cell.Shownavigationbar = self.Shownavigationbar

        return cell
}

//MARK: DetailsTabs Class

 override func awakeFromNib() {
//code to setUp the collectionViews

//pagesLayout is the UICollectionViewFlowLayout for the second collectionView
       pagesLayout.estimatedItemSize = CGSize(width: UIScreen.main.bounds.width, height: 1)
        }

//MARK: IN collectionView Cells I added this function:
 override func preferredLayoutAttributesFitting(_ layoutAttributes: UICollectionViewLayoutAttributes) -> UICollectionViewLayoutAttributes {
        setNeedsLayout()
        layoutIfNeeded()

        let size = contentView.systemLayoutSizeFitting(layoutAttributes.size)
        var frame = layoutAttributes.frame
        frame.size.height = ceil(size.height)
        layoutAttributes.frame = frame

        return layoutAttributes
    }

примечание: содержимое ячеек collectionView может быть webView или tableview.

1 Ответ

0 голосов
/ 14 сентября 2018
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        return 50
    }

func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
        return UITableViewAutomaticDimension
    }

Вы должны использовать UITableViewAutomaticDimension в оценочныйHeightForRowAtIndexPath

надеюсь, что у вас все в порядке ...!

...