Как установить UILabel на UICollectionViewCell?
мы делали это несколько десятков раз по индивидуальному заказуUITableView
клетки. Все мои розетки подключены.UILabel
это подпредставление моегоUICollectionViewCell
в IB. мойUICollectionViewCell
Объект наследует правильный класс в инспекторе идентичности.
Как мне установитьUILabel
на?UICollectionViewCell
-(void)setCellName:(NSString *)cellName {
self.cellLabel.text = cellName;
}
ViewController.m- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView
cellForItemAtIndexPath:(NSIndexPath *)indexPath {
ADMCell *cell =
(ADMCell *)[collectionView dequeueReusableCellWithReuseIdentifier:@"ADMCell"
forIndexPath:indexPath];
[cell setCellName:[NSString stringWithFormat:@"%d",[indexPath row]]];
return cell;
}
Выходные данные cell.debugDescription:
2013-05-15 22:05:40.191 ProductName[857:c07] cell.debugDescription:
`