繁体   English   中英

如何使用swift在UICollectionView单元格中加载自定义单元格(xib)

[英]How to load custom cell ( xib) in UICollectionView cell using swift

我使用 Swift 创建了一个小示例项目。 我创建了一个“MyCustomView”作为xib,其中包含标签、按钮和imageView,如下面的代码所示:

import UIKit

@IBDesignable class MyCustomView: UIView {

    @IBOutlet weak var lblName: UILabel!
    @IBOutlet weak var btnClick: UIButton!
    @IBOutlet weak var myImageView: UIImageView!

    var view:UIView!

    @IBInspectable
    var mytitleLabelText: String? {
        get {
            return lblName.text
        }
        set(mytitleLabelText) {
            lblName.text = mytitleLabelText
        }
    }

    @IBInspectable
    var myCustomImage:UIImage? {
        get {
            return myImageView.image
        }
        set(myCustomImage) {
            myImageView.image = myCustomImage
        }
    }


    override init(frame : CGRect)
    {
        super.init(frame: frame)
        xibSetup()
    }

    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
        xibSetup()
    }


    func xibSetup()
    {
        view = loadViewFromNib()
        view.frame = self.bounds

        // not sure about this ?
        view.autoresizingMask = [UIViewAutoresizing.FlexibleWidth, UIViewAutoresizing.FlexibleHeight]
        addSubview(view)
    }


    func loadViewFromNib() -> UIView {

        let bundle = NSBundle(forClass: self.dynamicType)
        let nib = UINib(nibName: "MyCustomView", bundle: bundle)
        let view = nib.instantiateWithOwner(self, options: nil)[0] as! UIView

        return view
    }
}

附上xib的图片以供参考。 截图

在 StoryBoard -> ViewController 添加 UIViewCollection,如下图所示。 在此视图集合中,我需要橙色单元格来包含要在运行时加载的自定义 xib。

我如何实现这一目标?

在此处输入图片说明

Sandeep 建议的新修改代码

// 1 导入 UIKit

class ViewController: UIViewController {

    @IBOutlet weak var collectionView: UICollectionView!

    override func viewDidLoad() {
        super.viewDidLoad()

        self.collectionView.register(UINib(nibName: "MyCustomView", bundle: nil), forCellWithReuseIdentifier: "myCell")

    }

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

    func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return 7
    }

    func numberOfSectionsInCollectionView(collectionView: UICollectionView) -> Int {
        return 1
    }

    func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {

        let cell : MyCustomView = collectionView.dequeueReusableCellWithReuseIdentifier("your_reusable_identifier", forIndexPath: indexPath) as! MyCustomView

        cell.lblName.text = "MyNewName"
        return cell
    }
}

// 2 导入 UIKit

@IBDesignable class MyCustomView: UICollectionViewCell {

    @IBOutlet weak var lblName: UILabel!
    @IBOutlet weak var btnClick: UIButton!
    @IBOutlet weak var myImageView: UIImageView!

    var view:UIView!

    @IBInspectable
    var mytitleLabelText: String? {
        get {
            return lblName.text
        }
        set(mytitleLabelText) {
            lblName.text = mytitleLabelText
        }
    }

    @IBInspectable
    var myCustomImage:UIImage? {
        get {
            return myImageView.image
        }
        set(myCustomImage) {
            myImageView.image = myCustomImage
        }
    }

}

这是你可以做的,

  1. 将您的MyCustomView类更改为 UICollectionViewCell 而不是 UIView 的子类。

  2. 删除override init(frame : CGRect)required init?(coder aDecoder: NSCoder)func xibSetup()func loadViewFromNib() -> UIView from MyCustomView

  3. 我真的无法理解你是如何将你的 setter 和 getter 用于 mytitleLabelText 和 myCustomImage。 如果它没有用,也摆脱它。

  4. 最后,您将只剩下 MyCustomView 中的 IBOutlets。

  5. 为了更好的编码实践,将名称从 MyCustomView 更改为 MyCustomCell(可选)

  6. 转到您的 xib,选择 xib 并将其类设置为 MyCustomView。

在此处输入图片说明

  1. 在同一屏幕中,将文件所有者更改为托管 collectionView 的 yourView 控制器

在此处输入图片说明

  1. 在您的 viewController 的 ViewDidLoad 中注册您的笔尖。
self.collectionView.registerNib(UINib(nibName: "your_xib_name", bundle: nil), forCellWithReuseIdentifier: "your_reusable_identifier")
  1. 在 cellForItemAtIndexPath 中,
let cell : MyCustomView = collectionView.dequeueReusableCellWithReuseIdentifier("your_reusable_identifier", forIndexPath: indexPath) as! MyCustomView
cell.lblName.text = "bla bla" //access your Cell's IBOutlets
return cell
  1. 最后,为了控制单元格的大小,要么覆盖 collectionView 的委托,要么只需转到您的 collectionView 中选择 collectionCell 并拖动它以匹配您的维度:) 就是这样:)

快乐编码。 搜索教程以更好地理解。 我无法解释所有代表,因为我最终会在这里写一篇博客。

快乐编码

对于 Swift 4.0

viewDidLoad 中

//custom collectionViewCell
mainCollectionView.register(UINib(nibName: "your_customcell_name", bundle: nil), forCellWithReuseIdentifier: "your_customcell_identifier")

cellForItemAt indexPath 中

let cell : <your_customcell_name> = mainCollectionView.dequeueReusableCell(withReuseIdentifier: "your_customcell_identifier", for: indexPath) as! <your_customcell_name>

并且不要忘记在 xib 部分为您的自定义单元格设置标识符。

如果您必须注册多个单元格,则采用一种方法。

extension UICollectionViewCell {

    static func register(for collectionView: UICollectionView)  {
        let cellName = String(describing: self)
        let cellIdentifier = cellName + "Identifier"
        let cellNib = UINib(nibName: String(describing: self), bundle: nil)
        collectionView.register(cellNib, forCellWithReuseIdentifier: cellIdentifier)
    }
}

使用步骤

  1. 将您的 Cell 标识符命名为"YourcellName" + "Identifier"例如: CustomCellIdentifier如果您的 Cell 名称是 CustomCell。

  2. CustomCell.register(for: collectionView)

对于 viewDidLoad 中的 Swift 4.2

 self.collectionView.register(UINib(nibName: "your_xib_name", bundle: nil), forCellWithReuseIdentifier: "your_reusable_identifier")

在 cellForItemAt 索引路径中:

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

当然,正如@Raj Aryan 所说:不要忘记在 xib 部分为您的自定义单元格设置标识符。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM