UICollectionViewCell不显示任何内容

时间:2012-11-11 14:34:10

标签: ios6 uicollectionview

我有一个自定义的CollectionViewCell

@interface FBPicCell : UICollectionViewCell
@property (strong, nonatomic) IBOutlet UILabel *picby;

viewDidLoad的代码中,我有

[self.fbpiccollectionView registerClass:[FBPicCell class]  forCellWithReuseIdentifier:@"fbpiccell"];

cellForItemAtIndexPath函数

FBPicCell *cell = [cv dequeueReusableCellWithReuseIdentifier:@"fbpiccell" forIndexPath:indexPath];
cell.backgroundColor = [UIColor whiteColor];
[cell.picby setText:@"Pavan"];
[cell.picby setTextColor:[UIColor redColor]];

但是我没有看到任何东西,只有白色的边框。不知道我在哪里弄乱了。任何指针都会有所帮助。

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,同时注册了你的电话 注册笔尖以及 -

[collectionView registerNib:[UINib nibWithNibName:@"cellname" bundle:nil] forCellWithReuseIdentifier:@"cellname"];

这对我有用 此致