标签:style color io 使用 ar for 文件 sp cti
一.UICollectionView使用的cell重用机制[collection registerClass:[UICollectionCell
class]
forCellWithReuseIdentifier:cellIdentifier];
[collection release];
//使用自定义cell,用自定义cell类将UICollectionCell替换即可
UICollectionCell *cell = [collectionView
dequeueReusableCellWithReuseIdentifier:cellIdentifier
forIndexPath:indexPath];
return cell;
}
(1).创建重用标识符
static NSString *identifier = @"重用”;
(2).根据重用标识符从队列中取出可重用的cell//使用自定义cell,用自定义cell类将UICollectionCell替换即可
UITableViewCell*cell =[tableView dequeueReusableCellWithIdentifier:identifier];
(3).判断是否成功取到可重用的cell,如果没有创建一个cell
if (!cell) {
cell = [[[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:identifier] autorelease];
}标签:style color io 使用 ar for 文件 sp cti
原文地址:http://blog.csdn.net/hakusan/article/details/39396569