UICollectionView用法类似于UITableView 和 UITableViewController 类。
使用UICollectionView 必须实现UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout这三个协议。
_contentArray = [[NSMutableArray alloc] initWithObjects:@"1",@"2",@"3",@"4",@"5",@"6",@"7",@"8",@"9",@"10",@"11", nil];
//初始化 _collectionView
_collectionView = [[UICollectionView alloc] initWithFrame:self.view.frame collectionViewLayout:[UICollectionViewFlowLayout new]];
//添加代理方法
_collectionView.delegate = self;
_collectionView.dataSource = self;
//调用 collectionview 的 registerClass:forCellReuseIdentifier:方法向数据源注册cell
[_collectionView registerClass:[CollectionCell class] forCellWithReuseIdentifier:cellIndentifier];
//设置为 禁止多选