我有一个UITableView
,其原型单元格中有一个UICollectionView
。
MainViewController
是UITableView
和MyTableViewCell
的代表
UICollectionView
类是TableViewCell
的委托。
在更新每个cell.reloadData()
内容时,我调用UITableViewCells
使单元格内的collectionView重新加载其内容。
当我使用可重复使用的细胞时,每个细胞出现时,它的最后一个细胞的内容都消失了!然后它从URL加载正确的内容。
我最多只有5到10 UITableView
。所以我决定不为let cell = MyTableViewCell(style: .default, reuseIdentifier:nil)
使用可重复使用的单元格。
我将tableView方法中的单元格创建行更改为:
override func layoutSubviews() {
myCollectionView.dataSource = self
}
EXC_BAD_INSTRUCTION CODE(code=EXC_I386_INVOP, subcode=0x0)
fatal error: unexpectedly found nil while unwrapping an Optional value
然后我在MyTableViewCell类(它是UICollectionView的委托)中遇到了一个错误,在这个函数中:
import UIKit
import Kingfisher
import Alamofire
class MyTableViewCell: UITableViewCell, UICollectionViewDataSource {
struct const {
struct api_url {
static let category_index = "http://example.com/api/get_category_index/";
static let category_posts = "http://example.com/api/get_category_posts/?category_id=";
}
}
@IBOutlet weak var categoryCollectionView: UICollectionView!
var category : IKCategory?
var posts : [IKPost] = []
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
if category != nil {
self.updateData()
}
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
override func layoutSubviews() {
categoryCollectionView.dataSource = self
}
func updateData() {
if let id = category?.id! {
let url = const.api_url.category_posts + "\(id)"
Alamofire.request(url).responseObject { (response: DataResponse<IKPostResponse>) in
if let postResponse = response.result.value {
if let posts = postResponse.posts {
self.posts = posts
self.categoryCollectionView.reloadData()
}
}
}
}
}
internal func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "postCell", for: indexPath as IndexPath) as! MyCollectionViewCell
let post = self.posts[indexPath.item]
cell.postThumb.kf.setImage(with: URL(string: post.thumbnail!))
cell.postTitle.text = post.title
return cell
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
//You would get something like "model.count" here. It would depend on your data source
return self.posts.count
}
func numberOfSectionsInCollectionView(collectionView: UICollectionView) -> Int {
return 1
}
}
MyTableViewCell.swift
import UIKit
import Alamofire
class MainViewController: UITableViewController {
struct const {
struct api_url {
static let category_index = "http://example.com/api/get_category_index/";
static let category_posts = "http://example.com/api/get_category_posts/?category_id=";
}
}
var categories : [IKCategory] = []
override func viewDidLoad() {
super.viewDidLoad()
self.updateData()
}
func updateData() {
Alamofire.request(const.api_url.category_index).responseObject { (response: DataResponse<IKCategoryResponse>) in
if let categoryResponse = response.result.value {
if let categories = categoryResponse.categories {
self.categories = categories
self.tableView.reloadData()
}
}
}
}
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableView) -> Int {
return self.categories.count
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return self.categories[section].title
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
// let cell = tableView.dequeueReusableCell(withIdentifier: "CollectionHolderTableViewCell") as! MyTableViewCell
let cell = MyTableViewCell(style: .default, reuseIdentifier:nil)
cell.category = self.categories[indexPath.section]
cell.updateData()
return cell
}
}
MainViewController.swift
import UIKit
class MyCollectionViewCell: UICollectionViewCell {
@IBOutlet weak var postThumb: UIImageView!
@IBOutlet weak var postTitle: UILabel!
var category : IKCategory?
}
MyCollectionViewCell.swift
def multiples_of_three():
return [i for i in range(3, 1000, 3)] # a list of multiples of 3 from 1-1000
threes = multiples_of_three()
print (threes)
为什么不重复使用细胞导致这种情况?我为什么做错了?
答案 0 :(得分:2)
有一些事情可以让你加快速度。
首先,取消注释使用可重用单元格的行并删除创建不可重用单元格的代码行。在这里使用可重复使用的细胞是安全的。
其次,在MyTableViewCell
中,在dataSource
调用之后立即为集合视图设置super.awakeFromNib()
。您只需要设置dataSource
一次,但layoutSubviews()
可能会被多次调用。它不是根据您的需求设置dataSource的正确位置。
override func awakeFromNib() {
super.awakeFromNib()
categoryCollectionView.dataSource = self
}
我已从updateData()
删除了对awakeFromNib()
的调用,因为您已在创建单元格时调用它。您也可以删除layoutSubviews()
覆盖,但作为一般规则,覆盖时请务必致电super.layoutSubviews()
。
最后,帖子似乎重新出现在错误的单元格中的原因是,当重新使用单元格时,posts数组没有被清空。要解决此问题,请将以下方法添加到MyTableViewCell
:
func resetCollectionView {
guard !posts.isEmpty else { return }
posts = []
categoryCollectionView.reloadData()
}
此方法清空数组并重新加载集合视图。由于现在数组中没有帖子,因此在您再次调用updateData之前,集合视图将为空。最后一步是在单元格的prepareForReuse
方法中调用该函数。将以下内容添加到MyTableViewCell:
override func prepareForReuse() {
super.prepareForReuse()
resetCollectionView()
}
让我知道它是怎么回事!