Interface BuilderでUICollectionCell
をUICollectionView
に配置しようとすると、不明な理由で配置できません。セルはUICollectionView
に追加せずにツールバーに移動します
私は使っている:
StoryBoard内のUICollectionViewのみが内部にUICollectionViewCellを持っています。 XIBを使用する場合は、CellName.xibで新しいXIBを作成し、それにCollectionViewCellを追加し、UICollectionViewカスタムクラスの名前を指定します。その後、registerNibを使用します。
サンプルコード: https://github.com/lequysang/TestCollectionViewWithXIB
UICollectionViewCell
ファイルを使用している場合、UiCollectionView
をXib
に直接配置することはできません。ストーリーボードでのみ可能です。 UICollectionViewCell
を別のXibファイルに追加します。クラス名を付けます。次に、コレクションビューが表示される前にクラスまたは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;
}
はい。実際にインターフェイスビルダーからxibファイル内のcollectionViewにセルを配置したい場合は、実際に回避策があります。
完璧に機能します。