UICollectionView

UICollectionViewFlowLayout懶加載

- (UICollectionViewFlowLayout *)flowLayout {
    if (!_flowLayout) {
        _flowLayout = [[UICollectionViewFlowLayout alloc] init];
        //每個(gè)item大小
        _flowLayout.itemSize = CGSizeMake(165, 250);
        //間距
//        CGFloat spacing = (kScreenWidth - 300) / 4.0;
        //最小行間距
        _flowLayout.minimumLineSpacing = 15;
        //最小列間距
        _flowLayout.minimumInteritemSpacing = 30;
        //上下左右四個(gè)邊緣的間距
        //每個(gè)區(qū)的上下左右
        _flowLayout.sectionInset = UIEdgeInsetsMake(15, 15, 15, 15);
        
    }
    return _flowLayout;
}

UICollectionView懶加載

- (UICollectionView *)collectionView {
    if (!_collectionView) {
        _collectionView = [[UICollectionView alloc] initWithFrame:self.view.bounds collectionViewLayout:self.flowLayout];
        _collectionView.backgroundColor = [UIColor clearColor];
        //代理
        _collectionView.dataSource = self;
        _collectionView.delegate = self;
    }
    return _collectionView;
}

注冊(cè)item

    //注冊(cè)item
    [self.collectionView registerClass:[customCell class] forCellWithReuseIdentifier:@"Cell"];

代理方法
簽訂協(xié)議<UICollectionViewDataSource, UICollectionViewDelegate>

//item個(gè)數(shù)
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    return self.dataSource.count;
}
//分區(qū)數(shù)
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
    return 2;
}
//item
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    customCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];
    cell.backgroundColor = [UIColor yellowColor];
    //獲取cell對(duì)應(yīng)的圖片
    NSDictionary *URLDic = self.dataSource[indexPath.item];
    //獲取字典內(nèi)的圖片網(wǎng)址
    NSString *imageURL = URLDic[@"thumbURL"];
    NSString *imageWidth = [NSString stringWithFormat:@"%@", URLDic[@"width"]];
    cell.widthLabel.text = imageWidth;
    //居中
    cell.widthLabel.textAlignment = NSTextAlignmentCenter;
    NSURL *imageurl = [NSURL URLWithString:imageURL];
    //獲取圖片
    [cell.imageView sd_setImageWithURL:imageurl placeholderImage:[UIImage imageNamed:@"placeholder"]];
    //圖片失真解決方法
    cell.imageView.contentMode = UIViewContentModeScaleAspectFit;
    return cell;
}
//item點(diǎn)擊方法
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
        NSLog(@"點(diǎn)擊");
}

注冊(cè)分區(qū)頭和分區(qū)尾

    //注冊(cè)分區(qū)頭
    [self.collectionView registerClass:[UICollectionViewCell class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"header"];
    //注冊(cè)分區(qū)尾
    [self.collectionView registerClass:[UICollectionViewCell class] forSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footer"];

分區(qū)頭分區(qū)尾代理方法

//分區(qū)尾大小
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section {
    return CGSizeMake(0, 30);
}
//分區(qū)頭大小
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section {
    return CGSizeMake(0, 30);
}
//分區(qū)頭部尾部協(xié)議方法
//分區(qū)頭部尾部共用一個(gè)協(xié)議方法
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath {
    if ([kind isEqualToString:UICollectionElementKindSectionHeader]) {
        //獲取分區(qū)頭是從重用隊(duì)列去取的雹顺,而不是alloc init 的的
        UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"header" forIndexPath:indexPath];
        headerView.backgroundColor = [UIColor lightGrayColor];
        UILabel *headerLabel = [[UILabel  alloc] init];
        headerLabel.frame = CGRectMake(0, 0, 150, 30);
        headerLabel.text = @"header--美女";
        headerLabel.backgroundColor = [UIColor redColor];
        [headerView addSubview:headerLabel];
        
        return headerView;
    }else {
        UICollectionReusableView *footerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footer" forIndexPath:indexPath];
        footerView.backgroundColor = [UIColor lightGrayColor];
        UILabel *footerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 150, 30)];
        footerLabel.text = @"footer--漂亮";
        footerLabel.backgroundColor = [UIColor greenColor];
        [footerView addSubview:footerLabel];
        
        return footerView;
    }
    
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末赘风,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌红碑,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,839評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異刨仑,居然都是意外死亡强重,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門贸人,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)间景,“玉大人,你說(shuō)我怎么就攤上這事艺智√纫” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 153,116評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵十拣,是天一觀的道長(zhǎng)封拧。 經(jīng)常有香客問(wèn)我,道長(zhǎng)夭问,這世上最難降的妖魔是什么泽西? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,371評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮缰趋,結(jié)果婚禮上捧杉,老公的妹妹穿的比我還像新娘。我一直安慰自己秘血,他們只是感情好味抖,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,384評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著灰粮,像睡著了一般仔涩。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上粘舟,一...
    開(kāi)封第一講書(shū)人閱讀 49,111評(píng)論 1 285
  • 那天熔脂,我揣著相機(jī)與錄音,去河邊找鬼柑肴。 笑死霞揉,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的嘉抒。 我是一名探鬼主播零聚,決...
    沈念sama閱讀 38,416評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼些侍!你這毒婦竟也來(lái)了隶症?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,053評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤岗宣,失蹤者是張志新(化名)和其女友劉穎蚂会,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體耗式,經(jīng)...
    沈念sama閱讀 43,558評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡胁住,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,007評(píng)論 2 325
  • 正文 我和宋清朗相戀三年趁猴,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片彪见。...
    茶點(diǎn)故事閱讀 38,117評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡儡司,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出余指,到底是詐尸還是另有隱情捕犬,我是刑警寧澤,帶...
    沈念sama閱讀 33,756評(píng)論 4 324
  • 正文 年R本政府宣布酵镜,位于F島的核電站碉碉,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏淮韭。R本人自食惡果不足惜垢粮,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,324評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望靠粪。 院中可真熱鬧蜡吧,春花似錦、人聲如沸庇配。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,315評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)捞慌。三九已至,卻和暖如春柬批,著一層夾襖步出監(jiān)牢的瞬間啸澡,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,539評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工氮帐, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留嗅虏,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,578評(píng)論 2 355
  • 正文 我出身青樓上沐,卻偏偏與公主長(zhǎng)得像皮服,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子参咙,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,877評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容