网格视图

2017-11-23  本文已影响0人  h_6e8a

import "ViewController.h"

@interface ViewController ()<UICollectionViewDelegate,UICollectionViewDataSource>
{
UICollectionView *collection; //网格视图
}

@end

//设置可重用标识符
static NSString * const reuseID = @"cell";

@implementation ViewController

//=========数据源方法=========

//设置组数

//设置行数

//设置 cell 内容

//根据可重用标识符查找cell
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:reuseID forIndexPath:indexPath];

//设置cell的背景颜色
cell.backgroundColor = [UIColor colorWithRed:((float)arc4random_uniform(256) / 255.0)green:((float)arc4random_uniform(256) / 255.0)blue:((float)arc4random_uniform(256) / 255.0)alpha:1.0];

return cell;

}

上一篇下一篇

猜你喜欢

热点阅读