本文介绍: 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进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注