自定义UICollectionViewCell和自定义UITableViewCell差不多,不过自定义UICollectionViewCell更像自定义UIView,具体代码如下
import UIKit
class ClassifyCollectionViewCell: UICollectionViewCell {
var imageView: UIImageView!
var titleLabel: UILabel!
override init(frame:CGRect){
super.init(frame: frame)
setupUI()
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
func setupUI(){
imageView = UIImageView()
titleLabel = UILabel()
titleLabel.font = UIFont.systemFont(ofSize: 13)
titleLabel.textAlignment = .center
titleLabel.textColor = UIColor.black
self.addSubview(imageView)
self.addSubview(titleLabel)
self.backgroundColor = UIColor.white
}
override func layoutSubviews() {
super.layoutSubviews()
let frame:CGRect = self.bounds
let imgx:CGFloat = 5.0
let imgy = imgx
let frameWidth:CGFloat = frame.size.width
let imgWidth:CGFloat = frameWidth - (imgx * 2.0)
self.imageView.frame = CGRect(x: imgx, y: imgy, width: imgWidth, height: imgWidth)
self.titleLabel.frame = CGRect(x: 0, y:imgy+frameWidth , width: frameWidth, height: 20)
}
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
}
本文介绍了如何在Swift中进行自定义UICollectionViewCell的操作,将其比作自定义UIView,并提供了具体的实现代码。

2978

被折叠的 条评论
为什么被折叠?



