iOS 自訂colletionView(純程式碼)
大家都說colletionView和UITabbleView 是兄弟,而且colletionView是在IOS 6之後出來的, colletionView和UITabbleView他倆確實是兄弟,但是使用的時你回遇到好多坑。
比如:
UICollectionView *colletionView = [[UICollectionView alloc]init];初始化一個colletionView,如果你這麼搞,你就掉到坑裡了。應為人家官方文檔是這樣給你的。
so!!!!你這樣搞就崩掉。你只能這樣。
UICollectionViewFlowLayout *grid =[[UICollectionViewFlowLayout alloc] init]; grid.itemSize = CGSizeMake(80, 80); //設定colletionView的大小grid.sectionInset = UIEdgeInsetsMake(10.0, 10, 10, 10);UICollectionView *colletionView = [[UICollectionView alloc]initWithFrame:self.view.frame collectionViewLayout:grid];colletionView.delegate =self; colletionView.dataSource = self;[colletionView registerClass:[photoCell class] forCellWithReuseIdentifier:@"simpleCell"];//這個一定要加不加上的化你的Cell init 是不會調用的哦 !!
OK 正就成功執行個體化了一個colletionView它與它的兄弟一樣需要設定代理,設定資料來源。在執行個體化的時候已經設定好了。
現在去實現他的代理並且自訂一個colletionViewCell
自訂Cell 要去自訂一個Cell類繼承UICollectionViewCell
.h
#import @interface Cell : UICollectionViewCell@property (nonatomic,strong)UIImageView *image;@end
.m
@implementation Cell-(id)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; if (self) { // change to our custom selected background view self.image = [[UIImageView alloc]init]; [self.image setFrame:CGRectMake(self.contentView.frame.size.width/2+20+5, -5, 20, 20)]; [self.image setBackgroundColor:[UIColor redColor]]; self.image.layer.cornerRadius=self.image.frame.size.width/2; // 將圖層的邊框設定為圓角 self.image.layer.masksToBounds=YES; // 隱藏邊界 [self addSubview:self.image]; } return self;}@end
-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{ return 1;}-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{ return 10;}-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{ static NSString *cellIdentifier = @"simpleCell"; Cell *cell = (Cell *)[collectionView dequeueReusableCellWithReuseIdentifier:cellIdentifier forIndexPath:indexPath]; if (cell ==nil) { cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellIdentifier forIndexPath:indexPath]; } return cell;}- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{ //--單機事件}