由于Storyboard的限制,我正在以编程方式创建UICollectionView。这工作正常,当我想添加UICollectionViewCell
时,我会执行以下操作:
[collectionView registerClass:[Cell class] forCellWithReuseIdentifier:@"ID"];
我想知道的是如何使用“Cell”类中的自定义init方法,因为我不能执行以下操作:
[collectionView registerClass:[[Cell class]init_custom]forCellWithReuseIdentifier:@"ID"];
问题:如何使用自定义UICollectionViewCell
类中的自定义init方法?
答案 0 :(得分:2)
如果我理解正确,那么我会创建集合视图单元格的子类。
首先使用您想要的一切设置您的单元格。
@interface MyCollectionViewCell : UICollectionViewCell
// Your custom cell
@end
@implementation MyCollectionViewCell
// Your custom cell
@end
然后,为每个集合视图创建一个仅覆盖init的子类。
@interface MyCollectionViewCellForCollectionView1 : MyCollectionViewCell
@end
@implementation MyCollectionViewCellForCollectionView1
- (instancetype)init // Only override -init
{
self = [super init];
if (self) {
// Setup for collection view one
}
return self;
}
@end
@interface MyCollectionViewCellForCollectionView2 : MyCollectionViewCell
@end
@implementation MyCollectionViewCellForCollectionView2
- (instancetype)init // Only override -init
{
self = [super init];
if (self) {
// Setup for collection view two
}
return self;
}
@end
然后,对于每个不同的集合视图,您可以注册一个子类。
[collectionView1 registerClass:[MyCollectionViewCellForCollectionView1 class] forCellWithReuseIdentifier:@"ID"];
[collectionView2 registerClass:[MyCollectionViewCellForCollectionView2 class] forCellWithReuseIdentifier:@"ID"];
这将为您提供所需的单独自定义init方法,但请务必将所有功能保留在基类中。