我有一个自定义的TagCollectionViewCell,它是一个自定义的UICollectionViewCell。在.xib天我曾经通过UINib实例化,但现在使用Storyboard我很无能为力。
UINib *cellNib = [UINib nibWithNibName:@"TagCollectionViewCell" bundle:nil];
[self.collectionView registerNib:cellNib forCellWithReuseIdentifier:@"TagCell"];
_sizingCell = [[cellNib instantiateWithOwner:nil options:nil] objectAtIndex:0];

在故事板中,我将笔尖粘贴在.storyboard中,为其指定了自定义类。但我得到一个白色的屏幕。这是我的自定义集合单元格,我希望它成为故事板。
我应该在集合视图cell_for_item_atindexpath中做些什么更改。 .xib的代码如下。
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
TagCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"TagCell" forIndexPath:indexPath];
[self _configureCell:cell forIndexPath:indexPath];
return cell;
}

并且用于配置布局是这样的。
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
[self _configureCell:_sizingCell forIndexPath:indexPath];
return [_sizingCell systemLayoutSizeFittingSize:UILayoutFittingCompressedSize];
}