从嵌入在 tableView 中的 collectionView 显示 xib

Posted

技术标签:

【中文标题】从嵌入在 tableView 中的 collectionView 显示 xib【英文标题】:Displaying xib from collectionView embedded in tableView 【发布时间】:2019-09-29 01:27:50 【问题描述】:

我正在尝试从 tableViewCell 显示一个 collectionViewCell 的 xib(这样我就可以在每行有类别的同时进行水平和垂直滚动)。似乎xib的寄存器是问题所在,因为它不会从正确的位置正确注册它? tableView 无法注册它,因为当我尝试这样做时它失败了,我已经在 collectionView 中注册了它,但它不会崩溃但没有显示。也许这不是最好的方法 - 但是实现间隔水平滚动和垂直滚动的好选择是什么?到目前为止,这是我的源代码

import UIKit

class DiscoverViewController: UIViewController 

    @IBOutlet weak var discoverTableView: UITableView!

    override func viewDidLoad() 
        super.viewDidLoad()
    


extension DiscoverViewController: UICollectionViewDelegate, UICollectionViewDataSource, UITableViewDelegate, UITableViewDataSource 

    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int 
        return 5
    

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell 

        collectionView.register(UINib(nibName: "DiscoverCollectionViewCell", bundle: nil), forCellWithReuseIdentifier: "DiscoverCollectionViewCell")

        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "DiscoverCollectionViewCell", for: indexPath) as! DiscoverCollectionViewCell

        cell.authorLabel.text = "this"
        cell.coverImage.image = #imageLiteral(resourceName: "discover")
        return cell
    

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int 
        5
    

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell 

        let cell = discoverTableView.dequeueReusableCell(withIdentifier: "CategoryTableViewCell", for: indexPath) as! CategoryTableViewCell

        return cell
    

【问题讨论】:

【参考方案1】:

想通了,必须将委托和数据源设置为 TableView 单元文件,并在电视上注册 xib,并在其中使用 CV 实例。感谢@Daniel 指出正确的方向。

【讨论】:

以上是关于从嵌入在 tableView 中的 collectionView 显示 xib的主要内容,如果未能解决你的问题,请参考以下文章

在 Swift 中为嵌入式 tableView 中的 segue 做准备

您好,我是 iOS 开发新手,我很难用 json 数据填充嵌入在 UIviewcontroller 中的 tableview

javaFX tableView中嵌入

如何在 TabFolder 中嵌入 SWT TableViewer?

在 iOS Swift 中,在 Swift 4 中的 TableView 中为 CollectionView 集成不同的数组

加载嵌入在导航中的视图控制器