Нажмите на новый UIViewController из UICollectionView, который находится внутри UITableViewCell при нажатии - PullRequest
0 голосов
/ 02 ноября 2018

В настоящее время у меня есть следующий код. Проблема в том. на didSelectItemAt коде xCode сообщается, что navigationController (типа «UINavigationController?» не имеет члена «pushViewController»)

для следующей строки:

navigationController?.pushViewController(searchCarViewController, animated: true)

Я понимаю, что это правильно, но просто не знаю реального решения для этого. Я - новая укладка CollectionViews на TableCells.

мое дерево:

UITableviewController -> UITableViewCell -> UICollectionView (здесь я получаю событие касания и пытаюсь нажать на другой ViewController.) -> UICollectionViewCell

class MenuTableViewCell: UITableViewCell, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {

var timerTest : Timer?

let menuOptions = [AppMenu(id:"1", name:"Buscar ", imageUrl:"search"),
                   AppMenu(id:"2", name:"Mis Datos", imageUrl:"datasheet"),
                   AppMenu(id:"3", name:"Tablas", imageUrl:"table"),
                   AppMenu(id:"4", name:"Preguntas", imageUrl:"faq")]

var myCollectionView: UICollectionView = {

    let layout = UICollectionViewFlowLayout()
    layout.sectionInset = UIEdgeInsets(top: 20, left: 20, bottom: 20, right: 20)
    layout.scrollDirection = .vertical

    let view = UICollectionView(frame: .zero, collectionViewLayout: layout)
    view.backgroundColor = UIColor.white
    view.showsHorizontalScrollIndicator = true
    return view
}()

override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
    super.init(style: style, reuseIdentifier: reuseIdentifier)

    addSubview(myCollectionView)

    myCollectionView.delegate = self
    myCollectionView.dataSource = self
    myCollectionView.register(MenuCollectionViewCell.self, forCellWithReuseIdentifier: "collectionCellId")
    myCollectionView.translatesAutoresizingMaskIntoConstraints = false
    myCollectionView.isScrollEnabled = false
    myCollectionView.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
    myCollectionView.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true
    myCollectionView.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
    myCollectionView.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true

}

required init?(coder aDecoder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
}

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return menuOptions.count
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "collectionCellId", for: indexPath) as! MenuCollectionViewCell

    print(indexPath.row)
    let menu = menuOptions[indexPath.row]

    cell.nameLabel.text = menu.name
    cell.imageView.image = UIImage(named: menu.imageUrl)        
    return cell
}

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
    return CGSize(width: 160, height: 160)
}

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
    let menu = menuOptions[indexPath.row]
    print(menu.name)

    let searchCarViewController = VehicleCategoryTableController()
    navigationController?.pushViewController(searchCarViewController, animated: true)

}


}

1 Ответ

0 голосов
/ 02 ноября 2018

Вы не можете использовать

navigationController?.pushViewController(searchCarViewController, animated: true)

внутри ячейки таблицы, вместо этого вам нужно добавить это

weak var myParent:VCName?

затем установите его внутри cellForRowAt

cell.myParent = self

тогда вы можете сделать это

myParent?.navigationController?.pushViewController(searchCarViewController, animated: true)

заметьте, у вас должна быть эта иерархия

UINavigationController-> UITableviewController -> UITableViewCell -> UICollectionView

Другой лучший способ - сделать tableController в качестве делегата и источника данных коллекции, например,

cell.collectionView.delegate = self
cell.collectionView.dataSource = self

затем реализуйте методы внутри него, и вы можете использовать свой текущий код

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...