你能在自定义单元格中制作 TableView 吗?

Can you make a TableView in a custom cell?

我有一个习惯TableViewCell。在这里面,我想放另一个 TableView,但我遇到了问题。 我有这样的东西:

import UIKit

class ByteCell: UITableViewCell, UITableViewDelegate, UITableViewDataSource {


    @IBOutlet weak var title: UILabel!
    @IBOutlet weak var game: UIImageView!
    @IBOutlet weak var TableView: UIView!


    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
    }
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = UITableViewCell()
        return cell
    }
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 5
    }

}

首先,我不会写:

tableView.delegate = self
tableView.dataSource = self

在这里的任何地方,所以我根本无法修改 tableView。

其次,确实出现的TableView没有任何行,也无法滚动。我基本上想在 TableView 内的自定义单元格内制作一个可滚动的 TableView。 这可能吗?

谢谢!

你完全可以在 UITableViewCells 里面放一个 UITableView

将 .delegate = self 放在哪里取决于您创建单元格的方式。

如果您以编程方式创建它,则使用 override init

 override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
        super.init(style: style, reuseIdentifier: reuseIdentifier)
        tableView = UITableView()
        tableView.delegate = self
        tableView.dataSource = self
    }

但是,如果您从笔尖或故事板加载单元格,则使用 initWithCoder

-(id)initWithCoder:(NSCoder *)aDecoder
{
    self = [super initWithCoder:aDecoder];
    if (self) {
       tableView = UITableView()
       tableView.delegate = self
       tableView.dataSource = self
    }
    return self;
}

请注意,您正在为自己准备一条崎岖不平的道路。还是有可能的,祝你好运!