Swift4.0 学习笔记 第十一节: UICollectionView

//
//  ViewController.swift
//  014-UICollectionView
//
//  Created by 庄壮勇 on 2018/1/4.
//  Copyright © 2018年 Personal. All rights reserved.
//

import UIKit

class ViewController: UICollectionViewController {
    // 数据源方法
    // 如果是使用 collectionViewController 数据源方法都有一个 ‘override’
    override func collectionView( _ collectionView: UICollectionView , numberOfItemsInSection section: Int ) -> Int {
        return 50
    }

    override func collectionView( _ collectionView: UICollectionView , cellForItemAt indexPath: IndexPath ) -> UICollectionViewCell {
        let cell = collectionView. dequeueReusableCell (withReuseIdentifier: "cellId" , for: indexPath)
       
        cell. backgroundColor = UIColor . init (red: CGFloat ( arc4random ()% 256 )/ 255.0 , green: CGFloat ( arc4random ()% 256 )/ 255.0 , blue: CGFloat ( arc4random ()% 256 )/ 255.0 , alpha: 1 )
       
        return cell
    }
   
    // 移动cell
    override func collectionView( _ collectionView: UICollectionView , moveItemAt sourceIndexPath: IndexPath , to destinationIndexPath: IndexPath ) {
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值