Я пытаюсь создать расширяемое табличное представление с дочерним элементом, имеющим представление UICollection - PullRequest
0 голосов
/ 13 мая 2019

Я пытаюсь создать табличное представление, которое

  1. Расширяемая
  2. Это Childview имеет UICollectionView
  3. UICollectionView динамически отображается с использованием API
  4. Событие onTouch объекта UICollectionView. Необходимо позаботиться о

Пробная пара образцов не сработала

import UIKit

extension String{
    func print(){
        Swift.print(self)
    }

    func log(){
        Swift.print(self)
    }
}


class CustomVCViewController: UIViewController, UITableViewDataSource, UITableViewDelegate , UICollectionViewDataSource, UICollectionViewDelegate{
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return 5
    }

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "ccell", for: indexPath) as! CustomCollectionViewCell
        cell.backgroundColor = UIColor.blue
        return cell
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
     return 10
    }
    func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
        "Selection of Collection View item at \(indexPath.row)".print()
    }
    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        "Selection of Table View item at \(indexPath.row)".print()
    }
    func numberOfSections(in collectionView: UICollectionView) -> Int {
        return 1
    }
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell",for: indexPath) as! CustomTableViewCell
        cell.innerCollectionView.dataSource = self
        cell.innerCollectionView.delegate = self
        cell.backgroundColor = UIColor.red

        return cell
    }

    func numberOfSections(in tableView: UITableView) -> Int {
        return 1
    }


    @IBOutlet weak var tableView: UITableView!
    override func viewDidLoad() {
        super.viewDidLoad()


        tableView.delegate = self

        tableView.dataSource = self
        // Do any additional setup after loading the view.
    }
}
  1. Это для ячейки табличного представления
 import UIKit        
 class CustomTableViewCell: UITableViewCell {

        @IBOutlet weak var innerCollectionView: UICollectionView!
        override func awakeFromNib() {
            super.awakeFromNib()
            // Initialization code
        }

        override func setSelected(_ selected: Bool, animated: Bool) {
            super.setSelected(selected, animated: animated)

            // Configure the view for the selected state
        }
 }

1 Ответ

0 голосов
/ 13 мая 2019

Насколько я понимаю, вы хотите, чтобы ячейка tableview была расширяемой как представление коллекции, поэтому я добавляю код для нее, дело в том, что collectionview не делает недействительным свой первый размер внутреннего содержимого соответственно

    /// This CollectionView class is used to invalidate collectionview's default implementation of inrinsic content size

    class DynamicCollectionView: UICollectionView {
        override func layoutSubviews() {
            super.layoutSubviews()
            if !__CGSizeEqualToSize(bounds.size, self.intrinsicContentSize) {
                self.invalidateIntrinsicContentSize()
            }
        }

        override var intrinsicContentSize: CGSize {
            return collectionViewLayout.collectionViewContentSize
        } 
}

ТАК добавьте этоПрисвойте классу свой просмотр коллекции и предоставьте отладку к вашим коллекциям.также!!!вернуть UITableViewAutomaticDimension для heightforRowAt представления таблицы.

...