我创建了一个UICollectionView类,我想覆盖它的行为,所以每当我想显示collectionView时,我都会创建UIV的类,即UICollectionView。
目前我这样做....
#import "CustomCollectionView.h"
@implementation CustomCollectionView
- (id)initWithFrame:(CGRect)frame {
self = [super init];
if (self) {
NSLog(@"");
}
return self;
}
- (id)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
if (self) {
}
return self;
}
- (void)customInit {
}
所以在customInit方法中我想设置Cell的大小,并且想要覆盖数据源方法....