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

      

  • 相关阅读:
    sql试题
    DataTable转换成实体类、List、DataSet等
    ASP.NET Web Pages 的冲突版本问题
    Linux系统中使用Xbox360手柄
    QT离线安装包
    美剧爬虫
    ROS串口通信
    Eclipse中STM32工程建立步骤
    AD模块电压采集电路
    一个串口小工具
  • 原文地址:https://www.cnblogs.com/qingzZ/p/10102233.html
Copyright © 2011-2022 走看看