当我尝试放入Interface BuilderUICollectionCell
时UICollectionView
,我无法以未知的原因放入它。单元格将转到工具栏而不添加到UICollectionView
我在用:
- iOS SDK 6.0
- XCode 4.5.1
- 我不使用情节提要
当我尝试放入Interface BuilderUICollectionCell
时UICollectionView
,我无法以未知的原因放入它。单元格将转到工具栏而不添加到UICollectionView
我在用:
只有 StoryBoard 中的 UICollectionView 内部有 UICollectionViewCell。如果使用 XIB,使用 CellName.xib 创建一个新的 XIB,将 CollectionViewCell 添加到其中,指定 UICollectionView 自定义类的名称。之后使用 registerNib。
示例代码:https ://github.com/lequysang/TestCollectionViewWithXIB
如果您正在使用文件,则不能UICollectionViewCell
直接放入。它只可能在故事板中。将 a 添加到单独的 Xib 文件中。给出你的班级名称。然后在集合视图出现之前注册类或 xibUiCollectionView
Xib
UICollectionViewCell
[self.collectionView registerClass:[CollectionViewCell class] forCellWithReuseIdentifier:CELL_ID];
通常这是在viewDidLoad
.
这是UICollectionViewCell
不使用的自定义的实现Xib
@implementation CollectionViewCell
@synthesize imageView = _imageView;
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
self.backgroundColor = [UIColor whiteColor];
self.layer.shadowColor = [UIColor blackColor].CGColor;
self.layer.shadowRadius = 5.0f;
self.layer.shadowOffset = CGSizeMake(2.0f, 2.0f);
self.layer.shadowOpacity = 0.5f;
// Selected background view
UIView *backgroundView = [[UIView alloc]initWithFrame:self.bounds];
backgroundView.layer.borderColor = [[UIColor colorWithRed:0.529 green:0.808 blue:0.922 alpha:1]CGColor];
backgroundView.layer.borderWidth = 10.0f;
self.selectedBackgroundView = backgroundView;
// set content view
CGRect frame = CGRectMake(self.bounds.origin.x+5, self.bounds.origin.y+5, self.bounds.size.width-10, self.bounds.size.height-10);
UIImageView *imageView = [[UIImageView alloc] initWithFrame:frame];
self.imageView = imageView;
[imageView release];
self.imageView.contentMode = UIViewContentModeScaleAspectFill ;
self.imageView.clipsToBounds = YES;
[self.contentView addSubview:self.imageView];
}
return self;
}
好的。实际上有一个解决方法,如果你真的想在 interface builder 的 xib 文件中的 collectionView 中拥有单元格:
它将完美地工作。