问题描述
我在 TableViewCell 中实现了 CollectionView,但我需要读取 CollectionView 上设置单元格的动态数据.
I implemented a CollectionView in a TableViewCell but I need read dynamic data for set cells on CollectionView.
我可以从 TableViewCell 类中读取扩展数据,也许可以帮助我将数据从 ViewController 传递到 TableViewCell 类.
I can read data on extension from class TableViewCell, maybe can help me pass data from ViewController to the class TableViewCell.
class MultipleTableViewCell: UITableViewCell {
@IBOutlet fileprivate weak var collectionView: UICollectionView!
}
extension MultipleTableViewCell : UICollectionViewDataSource {
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 3 // array.count
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "foodCell", for: indexPath) as! UserCollectionViewCell
let dict = array.object(at: indexPath.row) as! NSDictionary //Like this
cell.name.text = "How do you read data from ViewController"
cell.email.text = "How do you read data from ViewController"
cell.phone.text = dict["phone"] as? String //Like this
cell.image.image = "How do you read data from ViewController"
return cell
}
}
extension MultipleFoodTableViewCell : UICollectionViewDelegateFlowLayout {
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
let itemsPerRow:CGFloat = 1
let hardCodedPadding:CGFloat = 20
let itemWidth = (collectionView.bounds.width / itemsPerRow) - hardCodedPadding
let itemHeight = collectionView.bounds.height - (2 * hardCodedPadding)
return CGSize(width: itemWidth, height: itemHeight)
}
}
推荐答案
最简单的方法是在 MultipleTableViewCell
中创建一个方法,其中包含要填充的数据源数组 CollectionView
.现在在 TableView
的 cellForRowAt
方法中调用这个方法.
The simplest way is create one method inside your MultipleTableViewCell
with datasource array that you want to fill with CollectionView
. Now call this method in cellForRowAt
method of TableView
.
class MultipleTableViewCell: UITableViewCell {
@IBOutlet fileprivate weak var collectionView: UICollectionView!
var array = [String]() //Change with Your array type
func fillCollectionView(with array: [String]) {
self.array = array
self.collectionView.reloadData()
}
}
现在在 cellForRowAt
中调用此方法并为 collectionView
传递数据源数组.
Now call this method in cellForRowAt
and pass the datasource array for collectionView
.
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
let cell = tableView.dequeueReusableCell(withIdentifier: "CellIdentifier") as! MultipleTableViewCell
cell.fillCollectionView(with: ["A","B","C"]) //Pass your array
return cell
}
这篇关于如何将数据传递给嵌入在 TableViewCell 中的 UICollectionView (xCode - iOS - Swift 3)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!