zoukankan      html  css  js  c++  java
  • swift

    1.创建tableview

        private lazy var cellId = "cellId"
        fileprivate lazy var tv : UITableView = {
            let tv = UITableView(frame: CGRect.zero, style: UITableView.Style.grouped)
            tv.register(UITableViewCell.self, forCellReuseIdentifier: cellId)//注册cell
            tv.translatesAutoresizingMaskIntoConstraints = false// VFL
            tv.showsVerticalScrollIndicator = false//垂直滚动指示器
            tv.showsHorizontalScrollIndicator = false//水平滚动指示器
            tv.delegate = self
            tv.dataSource = self
            tv.bounces = false//弹簧效果
            tv.separatorStyle = .none//分割线
            tv.estimatedRowHeight = 0//预设行高
            tv.estimatedSectionFooterHeight = 0//预设分区头高度
            tv.estimatedSectionHeaderHeight = 0
            tv.backgroundColor = UIColor.white
            if #available(iOS 11.0, *) {
                tv.contentInsetAdjustmentBehavior = UIScrollView.ContentInsetAdjustmentBehavior.never
            }
            return tv
        }()
    

      

    2.UICollectionView

    let JYLoadImageCollectionCellId = "JYLoadImageCollectionCell"
    let JYAddImageCollectionCellId = "JYAddImageCollectionCell"
    private lazy var collectionView: UICollectionView = {
        let layout = UICollectionViewFlowLayout()
        let itemWidth = CGFloat(Int((JY_DEVICE_WIDTH - 10 * 4)/3))
        let itemHeight = itemWidth
        layout.itemSize = CGSize( itemWidth, height: itemHeight)
        layout.minimumLineSpacing = 0
        layout.minimumInteritemSpacing = 0
        layout.sectionInset = UIEdgeInsets(top: 0, left: 10, bottom: 0, right: 10)
        
        let collectionV = UICollectionView(frame: CGRect.zero, collectionViewLayout: layout)
        collectionV.translatesAutoresizingMaskIntoConstraints = false
        //        collectionV.register(UINib.init(nibName: "JYChooseShopTimeCollectionCell", bundle: nil), forCellWithReuseIdentifier: "JYChooseShopTimeCollectionCell")
        collectionV.register(JYLoadImageCollectionCell.classForCoder(), forCellWithReuseIdentifier: JYLoadImageCollectionCellId)
        collectionV.register(JYAddImageCollectionCell.classForCoder(), forCellWithReuseIdentifier: JYAddImageCollectionCellId)
        collectionV.delegate = self
        collectionV.dataSource = self
        collectionV.backgroundColor = .white
        collectionV.showsHorizontalScrollIndicator = false
        collectionV.showsVerticalScrollIndicator = false
        
        return collectionV
    }()
    

      

  • 相关阅读:
    shell脚本积累
    while,shift,until,case
    条件测试命令,if命令,双圆括号,双中括号
    seq命令,tr命令,sort命令,cut命令
    正则,grep命令详解
    Ansible实现批量管理服务器
    实时同步服务知识梳理
    RHEL7破解密码操作步骤
    运维核心基础知识之——MD5sum校验文件
    Linux运维基础提高之RAID卡和磁盘分区
  • 原文地址:https://www.cnblogs.com/qingzZ/p/10102233.html
Copyright © 2011-2022 走看看