我有一个自定义 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]];
但我什么也没看到,只有白色边框。不知道我在哪里搞砸了。任何指针都会有所帮助。