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
    }()
    

      

  • 相关阅读:
    poj 3087 直接模拟
    POJ-3126 BFS,埃式筛选及黑科技
    POJ3278-Catch That Cow
    js变量提升
    饿了么
    2分钟就能学会的【Google/百度搜索大法】了解一下?
    span标签间距
    Vue移动端项目如何使用手机预览调试
    Port 3000 is already in use
    koa2第一天 async详解
  • 原文地址:https://www.cnblogs.com/qingzZ/p/10102233.html
Copyright © 2011-2022 走看看