UITableViewCell 中的 Swift UICollectionView 不起作用

Posted

技术标签:

【中文标题】UITableViewCell 中的 Swift UICollectionView 不起作用【英文标题】:Swift UICollectionView in UITableViewCell not working 【发布时间】:2017-01-11 14:46:26 【问题描述】:

我在表格视图单元格中有一个集合视图。该模型是按愿望清单名称分组的愿望清单项目。可能有很多愿望清单。当用户选择愿望清单时,他们会得到一个平面的愿望清单数组,但我想在单元格中显示愿望清单的项目图像的预览。它们不能单独选择,单元格选择会转到所选愿望清单的项目列表。同样,我将通过滑动删除动作删除整个愿望清单。

我的问题是collectionView 函数根本不触发。我正在测试的源数据有一个愿望清单和 4 个项目。

这是我的 TableViewCell。

import Foundation
import UIKit
import Alamofire
import AlamofireImage

class WishListsCell: UITableViewCell 

var collectionView: UICollectionView!

let screenWidth = UIScreen.main.bounds.width

var alamofireRequest: Alamofire.Request?

override func awakeFromNib() 
    super.awakeFromNib()
    // Initialization code

    let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
    layout.sectionInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
    layout.itemSize = CGSize(width: screenWidth, height: ((screenWidth / 4) * Constants.IMAGE_ASPECT_RATIO))
    layout.minimumInteritemSpacing = 0
    layout.minimumLineSpacing = 0
    layout.estimatedItemSize.height = ((screenWidth / 4) * Constants.IMAGE_ASPECT_RATIO)
    layout.estimatedItemSize.width = screenWidth

    collectionView = UICollectionView(frame: contentView.frame, collectionViewLayout: layout)

    collectionView.delegate = self

    collectionView.dataSource = self   

    collectionView.register(WishListsCollectionViewCell.self, forCellWithReuseIdentifier: cellId)

    self.contentView.addSubview(collectionView)



override func setSelected(_ selected: Bool, animated: Bool) 
    super.setSelected(selected, animated: animated)


override init(style: UITableViewCellStyle, reuseIdentifier: String?) 
    super.init(style: style, reuseIdentifier: reuseIdentifier)    


required init?(coder aDecoder: NSCoder) 
    fatalError("init(coder:) has not been implemented")




extension WishListsCell: UICollectionViewDelegate, UICollectionViewDataSource 


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

    debugPrint(wishListItems.count)

    return wishListItems.count




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

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

    if let imageUrl = wishListItems[indexPath.row]["image"] as? String 

        debugPrint(imageUrl)

        cell.imageView.image = nil

        if let image = ShoppingManager.sharedManager.photoCache.image(withIdentifier: imageUrl) 
            cell.imageView.image = image
        
        else
                                      
            cell.alamofireRequest?.cancel()

            cell.alamofireRequest = Alamofire.request(imageUrl)
                .responseImage  response in

                    let img = response.result.value

                    cell.imageView.image = img

                    cell.imageView.contentMode = UIViewContentMode.scaleAspectFit

                    let imageWidth:CGFloat = self.screenWidth/4

                    let imageHeight:CGFloat = imageWidth * Constants.IMAGE_ASPECT_RATIO

                    cell.imageView.frame.size.width = imageWidth

                    cell.imageView.frame.size.height = imageHeight

                    ShoppingManager.sharedManager.photoCache.add(img!, withIdentifier: imageUrl)               
            
        
    
    return cell   
   

这是我的 CollectionViewCell:

import Foundation
import UIKit
import Alamofire
import AlamofireImage

class WishListsCollectionViewCell: UICollectionViewCell 

    var alamofireRequest: Alamofire.Request?

    var imageView: UIImageView

    let screenWidth = UIScreen.main.bounds.width

    override init(frame: CGRect) 

        imageView = UIImageView()

        super.init(frame: frame)

        contentView.addSubview(imageView)

        imageView.translatesAutoresizingMaskIntoConstraints = false

        imageView.contentMode = .scaleAspectFit

        NSLayoutConstraint.activate([

           NSLayoutConstraint(item: imageView, attribute: .width, relatedBy: .equal,
                               toItem: nil, attribute: .width,
                               multiplier: 1.0, constant: screenWidth / 4),

            NSLayoutConstraint(item: imageView, attribute: .height, relatedBy: .equal,
                               toItem: nil, attribute: .height,
                               multiplier: 1.0, constant: (screenWidth / 4) * Constants.IMAGE_ASPECT_RATIO),

            ])
    

    required init?(coder aDecoder: NSCoder) 
        fatalError("init(coder:) has not been implemented")
        

以下是我的 ViewController 代码的相关部分:

import UIKit
import Alamofire
import AlamofireImage
import MBProgressHUD
import DBAlertController

class WishListsViewController: UIViewController, UITableViewDelegate, UITableViewDataSource 

    var tableView: UITableView = UITableView()

    var screenSize: CGRect!
    var screenWidth: CGFloat!
    var screenHeight: CGFloat!

    var cellId = "WishListsCell"

    var didSelectItem:Bool = false

    override func viewDidLoad() 
        super.viewDidLoad()

        screenSize = UIScreen.main.bounds
        screenWidth = screenSize.width
        screenHeight = screenSize.height

        tableView.delegate      =   self

        tableView.dataSource    =   self

        tableView.backgroundColor = .white

        tableView.register(WishListsCell.self, forCellReuseIdentifier: cellId)

        self.view.addSubview(tableView)

        tableView.translatesAutoresizingMaskIntoConstraints = false

        tableView.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
        tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true
        tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
        tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor).isActive = true

        let customView = UIView(frame: CGRect(x:0, y:0, width:screenWidth, height:30))

        customView.backgroundColor = Constants.APP_BACKGROUND_COLOR

        let button = UIButton(frame: CGRect(x: 0, y: 0, width: screenWidth, height: 30))

        button.setTitle("Add New Wish List", for: .normal)

        button.setTitleColor(Constants.APP_TEXT_COLOR, for: .normal)

        button.titleLabel?.font = Constants.APP_HEADER_FONT

        button.addTarget(self, action: #selector(addButtonAction), for: .touchUpInside)

        customView.addSubview(button)

        tableView.tableHeaderView = customView        
    

    override func didReceiveMemoryWarning() 
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    

    func numberOfSections(in tableView: UITableView) -> Int 
        return wishLists.count
    

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

    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat 

        return 120
    

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

        let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath) as! WishListsCell

        let listId = wishLists[indexPath.section]["listid"] as! Int

        cell.alamofireRequest?.cancel()

        cell.alamofireRequest = Alamofire.request(myURL)
            .responseJSON(completionHandler: 
                response in  
                self.parseWishListItemData(JSONData: response.data!)             
            )
        return cell
    

    func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? 

        let listName = wishLists[section]["listname"] as! String

        return listName
       
    

【问题讨论】:

只是一个猜测,但您的集合视图委托不应该在您添加集合视图协议的视图控制器中设置吗?并在那里设置数据源和代表?我看到你已经添加了一个扩展,所以可能没有。 我关注了几个这样做的博客,contentpedlar.wordpress.com/2016/10/22/… 可能是因为您在主线程上执行 Web 请求并阻止 UI 及其对集合视图的更新,因此您没有收到函数调用。如果你注释掉你的 Alamofire 代码会发生什么。 没什么不同。我认为 Alamofire 请求是异步的? 是的,我的错我相信他们是。我假设您也已在 tableviewcell 中连接了您的集合视图插座?即 tableviewcell > collectionview 或者你是在代码中创建 collectionview 吗?此外,您的 collectionview 没有 numberOfSections 只有 numberOfItemsInSection 【参考方案1】:

awakeFromNib 中实例化集合视图之后,您似乎并未将集合视图添加到视图层次结构中。您需要在单元格的内容视图上调用addSubview

override func awakeFromNib() 
    super.awakeFromNib()
    // Initialization code

    let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
    layout.sectionInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
    layout.itemSize = CGSize(width: screenWidth, height: ((screenWidth / 4) * Constants.IMAGE_ASPECT_RATIO))
    layout.minimumInteritemSpacing = 0
    layout.minimumLineSpacing = 0
    layout.estimatedItemSize.height = ((screenWidth / 4) * Constants.IMAGE_ASPECT_RATIO)
    layout.estimatedItemSize.width = screenWidth

    collectionView = UICollectionView(frame: contentView.frame, collectionViewLayout: layout)

    collectionView.delegate = self

    collectionView.dataSource = self

    self.contentView.addSubview(collectionView) // <-- Need this        

如果重复使用表格单元格,您可能还会遇到一些问题。您必须确保每次重新使用您的集合视图委托时都会设置它——可能在prepareForReuse 中。

【讨论】:

这也无济于事。没有触发任何集合视图函数。 你能设置集合视图的背景颜色并确保它显示在表格单元格中吗?另外,您是否在awakeFromNib 中设置了断点以确保它被调用? tableViewCell 没有被调用。 您是否在表格视图中设置了delegatedataSource,或者您的视图控制器是UITableViewController 的子类? 它们已经设置好了,我从上面的视图控制器中添加了代码。【参考方案2】:

init 被错误地放置在 awakeFromNib() 中,应该在

override init(style: UITableViewCellStyle, reuseIdentifier: String?) 
    super.init(style: style, reuseIdentifier: reuseIdentifier)

【讨论】:

以上是关于UITableViewCell 中的 Swift UICollectionView 不起作用的主要内容,如果未能解决你的问题,请参考以下文章

iOS + Swift 2:UITableViewCell 中的动态高度不适用于空视图

在嵌入在 UITableviewCell 中的 UICollectionView 中进行 Segue,Swift

从另一个视图控制器单击 uitableviewcell 后,swift 3 更改 uitableviewcell?

Swift 中的自定义 UITableViewCell 注册类

Swift 中 UITableViewCell 中的 UIScrollView

uitableviewcell中的swift uitableview,自动布局始终高度为0