// static NSString *ID = @”cell”;
// [tableView registerClass:[DCVBiggieTableViewCell class] forCellReuseIdentifier:ID];
// UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID forIndexPath:indexPath];
// return cell;
static NSString *CellIdentifier = @”DCVBiggieCell”;
DCVBiggieCell cell = (DCVBiggieCell)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell= (DCVBiggieCell *)[[[NSBundle mainBundle] loadNibNamed:@”DCVBiggieCell” owner:self options:nil] lastObject];
}
return (DCVBiggieCell *)cell;
CollectionView:
UINib *nib = [UINib nibWithNibName:@”DCVBiggieperusalCell” bundle: [NSBundle mainBundle]];
[collectionView registerNib:nib forCellWithReuseIdentifier:@”DCVBiggieperusalCell”];
DCVBiggieperusalCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@”DCVBiggieperusalCell” forIndexPath:indexPath];
// [self.detailReadingView registerClass:[DCVBiggieperusalCell class] forCellWithReuseIdentifier:@”DCVBiggieperusalCell”];
// UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier: @”DCVBiggieperusalCell” forIndexPath: indexPath];