我有一个自定义的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]];
但是我没有看到任何东西,只有白色的边框。不知道我在哪里弄乱了。任何指针都会有所帮助。
答案 0 :(得分:1)
我遇到了同样的问题,同时注册了你的电话 注册笔尖以及 -
[collectionView registerNib:[UINib nibWithNibName:@"cellname" bundle:nil] forCellWithReuseIdentifier:@"cellname"];
这对我有用 此致