当我试图把UICollectionCell
以UICollectionView
在Interface Builder,我不能把它与原因不明。该单元将转到工具栏,而无需添加UICollectionView
我在用:
- iOS SDK 6.0
- XCode 4.5.1
- 我不使用情节提要
当我试图把UICollectionCell
以UICollectionView
在Interface Builder,我不能把它与原因不明。该单元将转到工具栏,而无需添加UICollectionView
我在用:
Answers:
StoryBoard内部只有UICollectionView才具有UICollectionViewCell。如果使用XIB,请使用CellName.xib创建一个新的XIB,向其中添加CollectionViewCell,并指定UICollectionView自定义类的名称。之后,使用registerNib。
示例代码:https : //github.com/lequysang/TestCollectionViewWithXIB
如果您正在使用文件UICollectionViewCell
,UiCollectionView
则不能直接放入Xib
。仅在情节提要中才有可能。将A添加UICollectionViewCell
到单独的Xib文件中。输入您的班级名称。然后在出现收集视图之前注册class或xib
[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;
}
UICollectionViewCell
中UICollectionView
。