UITableView:UITableViewDataSource,UITableViewDelegate
UIcollectionView:UICollectionViewDelegate, UICollectionViewDataSource,UICollectionViewDelegateFlowLayout
tableview可以不注册cell
collectionView必须注册cell,否则会崩溃
用[tableView dequeueReusableCellWithIdentifier:]
方法创建cell可以不用注册cell, 但是需要考虑cell为空的情况,并做相应处理。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"CellID"];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"CellID"];
}
cell.textLabel.text = @"system cell";
return cell;
}
如果使用如下代码创建cell,必须注册cell,否则会crash。
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"CellID" forIndexPath:indexPath];
注:如果注册了cell,则 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath方法中不需要处理cell为空的情况。
需要注册cell,不用处理cell为空的情况。
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
CustomCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"CustomCollectionViewCell" forIndexPath:indexPath];
return cell;
}
UICollectionViewFlowLayout对象
开发中可以充分利用sectionInset:
宽为375的屏幕,需要一行显示三个width=100的item,且列间距为0,如何设置?
a> 可以初始化collectionView的时候设置宽度为300;
b >设置sectionInset = UIEdgeInsetsMake(0, 37.5, 0, 37.5);
创建cell时带forIndexPath:
的方法需要注册cell;
已经注册过cell,不用判断cell为空。