本文介绍: var model : NewBottomModel = NewBottomModel(image : “海拔” , text : “test“) {didSet {bottomLabel . text = “平均速度” topImageView . image = UIImage(named : model . image) } }Swift之自定义UICollectionViewCell – csdn。
1.纯代码自定义UICollectionViewCell
import UIKit
class NewDeviceBottomCollectionViewCell: UICollectionViewCell {
var model:NewBottomModel = NewBottomModel(image: "海拔", text: "test") {
didSet{
reloadData()
}
}
override init(frame: CGRect) {
super.init(frame: frame)
setupUI()
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
var bottomLabel = UILabel()
var topImageView = UIImageView()
func setupUI(){
contentView.backgroundColor = newUIBlack
contentView.addSubview(topImageView)
topImageView.snp.makeConstraints { make in
make.top.equalToSuperview().offset(10)
make.width.height.equalTo(25)
make.centerX.equalToSuperview()
}
contentView.addSubview(bottomLabel)
bottomLabel.textColor = .white
bottomLabel.snp.makeConstraints { make in
make.centerX.equalToSuperview()
make.top.equalTo(topImageView.snp_bottom).offset(10)
}
}
func reloadData(){
bottomLabel.text = "平均速度"
topImageView.image = UIImage(named: model.image)
}
}
参考博客:
Swift之自定义UICollectionViewCell – csdn
2.禁止滑动(弹簧效果)
collectionView.bounces = false
参考博客:
iOS swift-UIScrollview,UITableview,UICollectionView单独禁止下拉(上拉)
3.UICollectionView的长按拖动
参考博客:
Swift下使用UICollectionView 实现长按拖拽功能
2.在一个控制器中放两个UICollectionView或者UITableView,代理方法要怎么写
原文地址:https://blog.csdn.net/baidu_40537062/article/details/129226764
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_29490.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。