我怎样才能在自己的类中覆盖UIcollectioView Delegate和datasource方法

时间:2016-03-19 07:09:25

标签: ios uicollectionview

我创建了一个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的大小,并且想要覆盖数据源方法....

0 个答案:

没有答案