我使用与tableview连接的ViewController并使用ExpandableCell lib扩展UITableviewcell。
我在故事板中创建了一个带有UICollectionview的expandcell,但是当我使用dequeueReusableCell时,他不会加载UICollectionview
我正在使用Swift 4 Xcode 9.2
以下是我在查看控制器
的代码 override func viewDidLoad() {
super.viewDidLoad()
self.tableView.register(ServicesCell.self, forCellReuseIdentifier: "servicesCell")
self.tableView.register(ConciergeCell.self, forCellReuseIdentifier: "conciergeCollection")
}
extension ViewController : ExpandableDelegate {
func expandableTableView(_ expandableTableView: ExpandableTableView, expandedCellsForRowAt indexPath: IndexPath) -> [UITableViewCell]? {
let cell = tableView.dequeueReusableCell(withIdentifier: ConciergeCell.ID) as! ConciergeCell
return [cell]
}
extension ViewController: UICollectionViewDelegate, UICollectionViewDataSource {
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return concierge.count
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
switch indexPath.section {
cell.displayContent(image: concierge[indexPath.row].image!, title: concierge[indexPath.row].name!)
cell.backgroundColor = UIColor.dark70
cell.layoutSubviews()
return cell
}
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
print("Collection view at row \(collectionView.tag) selected index path \(indexPath)")
}
UITableviewcell类
class ConciergeCell: UITableViewCell {
static let ID = "conciergeCollection"
@IBOutlet weak var collectionView: UICollectionView!
}
UICollectionviewcell
class ConciergeCollectionCell: UICollectionViewCell {
@IBOutlet var mainImage: UIImageView!
@IBOutlet var mainLabel: UILabel!
func displayContent(image: UIImage, title: String) {
mainImage.image = image
mainLabel.text = title
}
}
我可以采取哪些措施来解决这个问题?我不知道是否有必要在viewDidLoad中注册uitableviewcell,因为我是使用Storyboard创建的
答案 0 :(得分:0)
问题是,您没有为UICollectionView实例设置委托和数据源。
此图片中突出显示它们未连接。
在ConciergeCell
课程中,进行以下更改:
class ConciergeCell: UITableViewCell, UICollectionViewDelegate, UICollectionViewDataSource {
static let ID = "conciergeCollection"
@IBOutlet weak var collectionView: UICollectionView!
private var concierge: Concierge
func awakeFromNib() {
super.awakeFromNib()
self.collectionView.delegate = self
self.collectionView.dataSource = self
}
func configure(withConciergeData concierge:Concierge) {
self.concierge = concierge
self.concierge.reloadData()
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return self.concierge.count
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
cell.displayContent(image: self.concierge[indexPath.row].image!, title: concierge[indexPath.row].name!)
cell.backgroundColor = UIColor.dark70
cell.layoutSubviews()
return cell
}
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
print("Collection view at row \(collectionView.tag) selected index path \(indexPath)")
}
}
然后,在以下函数中,在返回[cell]
数组之前,使用您的礼宾数据实例调用configure(withConciergeData:)
函数,如下所示:
extension ViewController : ExpandableDelegate {
func expandableTableView(_ expandableTableView: ExpandableTableView, expandedCellsForRowAt indexPath: IndexPath) -> [UITableViewCell]? {
let cell = tableView.dequeueReusableCell(withIdentifier: ConciergeCell.ID) as! ConciergeCell
cell.configure(withConciergeData: concierge)
return [cell]
}
}
只是抬起头来,我在这里输入了这段代码。如果将其复制并粘贴到Xcode中,则可能会出现一些编译器错误。希望这会有所帮助。