貼個(gè)collection設(shè)置headerView和footerView的代碼

公司給的UI圖要求如下

Snip20160419_2.png

這個(gè)用collection還是比較好做的
效果如下


Snip20160419_1.png

在xib里直接有footer和header的屬性,如果用代碼的話,貼一組代碼記錄一下
新建一個(gè)控制器繼承UICollectionViewController

static NSString * const reuseIdentifier = @"Cell";

- (instancetype)init
{
    // 創(chuàng)建瀑布流對(duì)象,設(shè)置cell的尺寸和位置
    UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
    // 設(shè)置滾動(dòng)的方向
    layout.scrollDirection = UICollectionViewScrollDirectionVertical;

    CGSize size = [UIScreen mainScreen].bounds.size;
    layout.itemSize = size;
    // 設(shè)置cell之間的間距
    layout.minimumInteritemSpacing = 10;
    // 設(shè)置行距
    layout.minimumLineSpacing = 10;
    
    layout.footerReferenceSize = CGSizeMake(size.width, 100);
    layout.headerReferenceSize = CGSizeMake(size.width, 50);
    return [super initWithCollectionViewLayout:layout];
}

// 設(shè)置headerView和footerView的
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{
    UICollectionReusableView *reusableView = nil;
    if (kind == UICollectionElementKindSectionHeader) {
        UICollectionReusableView *header = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"HeaderView" forIndexPath:indexPath];
        reusableView = header;
    }
    reusableView.backgroundColor = [UIColor greenColor];
    if (kind == UICollectionElementKindSectionFooter)
    {
        UICollectionReusableView *footerview = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"FooterView" forIndexPath:indexPath];
        footerview.backgroundColor = [UIColor purpleColor];
        reusableView = footerview;
    }
    return reusableView;
}


- (void)viewDidLoad {
    [super viewDidLoad];
    

    // Uncomment the following line to preserve selection between presentations
    // self.clearsSelectionOnViewWillAppear = NO;
    
    // Register cell classes
    [self.collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:reuseIdentifier];
    self.collectionView.pagingEnabled = YES;
//    self.collectionView.bounces = NO; // 是否有邊距
    self.collectionView.showsHorizontalScrollIndicator = NO;
    
    [self.collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"HeaderView"];
    [self.collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"FooterView"];
    
    // Do any additional setup after loading the view.
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


#pragma mark <UICollectionViewDataSource>

- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
    return 2;
}


- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    return 10;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:reuseIdentifier forIndexPath:indexPath];
    if (indexPath.section == 0) {
        cell.backgroundColor = [UIColor redColor];
    } else {
        cell.backgroundColor = [UIColor greenColor];
    }
    
    return cell;
}

#pragma mark - UICollectionViewDelegateFlowLayout
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
    return CGSizeMake(96, 100);
}

- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
{
    return UIEdgeInsetsMake(5, 5, 5, 5);
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市孵稽,隨后出現(xiàn)的幾起案子誓焦,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,126評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件叉袍,死亡現(xiàn)場(chǎng)離奇詭異脸爱,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)软驰,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)心肪,“玉大人锭亏,你說(shuō)我怎么就攤上這事∶沙耄” “怎么了贰镣?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,445評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)膳凝。 經(jīng)常有香客問(wèn)我碑隆,道長(zhǎng),這世上最難降的妖魔是什么蹬音? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,185評(píng)論 1 278
  • 正文 為了忘掉前任上煤,我火速辦了婚禮,結(jié)果婚禮上著淆,老公的妹妹穿的比我還像新娘劫狠。我一直安慰自己拴疤,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,178評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布独泞。 她就那樣靜靜地躺著呐矾,像睡著了一般。 火紅的嫁衣襯著肌膚如雪懦砂。 梳的紋絲不亂的頭發(fā)上蜒犯,一...
    開(kāi)封第一講書(shū)人閱讀 48,970評(píng)論 1 284
  • 那天,我揣著相機(jī)與錄音荞膘,去河邊找鬼罚随。 笑死,一個(gè)胖子當(dāng)著我的面吹牛羽资,可吹牛的內(nèi)容都是我干的淘菩。 我是一名探鬼主播,決...
    沈念sama閱讀 38,276評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼屠升,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼潮改!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起弥激,我...
    開(kāi)封第一講書(shū)人閱讀 36,927評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤进陡,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后微服,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,400評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡缨历,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,883評(píng)論 2 323
  • 正文 我和宋清朗相戀三年以蕴,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片辛孵。...
    茶點(diǎn)故事閱讀 37,997評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡丛肮,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出魄缚,到底是詐尸還是另有隱情宝与,我是刑警寧澤,帶...
    沈念sama閱讀 33,646評(píng)論 4 322
  • 正文 年R本政府宣布冶匹,位于F島的核電站习劫,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏嚼隘。R本人自食惡果不足惜诽里,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,213評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望飞蛹。 院中可真熱鬧谤狡,春花似錦灸眼、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,204評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至捕仔,卻和暖如春宛徊,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背逻澳。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,423評(píng)論 1 260
  • 我被黑心中介騙來(lái)泰國(guó)打工闸天, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人斜做。 一個(gè)月前我還...
    沈念sama閱讀 45,423評(píng)論 2 352
  • 正文 我出身青樓苞氮,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親瓤逼。 傳聞我的和親對(duì)象是個(gè)殘疾皇子笼吟,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,722評(píng)論 2 345

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

  • 本文為大地瓜原創(chuàng),歡迎知識(shí)共享霸旗,轉(zhuǎn)載請(qǐng)注明出處贷帮。雖然你不注明出處我也沒(méi)什么精力和你計(jì)較。作者微信號(hào):christg...
    大地瓜123閱讀 402評(píng)論 0 0
  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫(kù)诱告、插件撵枢、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,022評(píng)論 4 62
  • Android 自定義View的各種姿勢(shì)1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,498評(píng)論 25 707
  • “公主,我們真的要這樣嗎精居?”惜瑤一臉擔(dān)心地看著一身素衣锄禽,準(zhǔn)備跳窗逃跑的公主殿下。 “那是當(dāng)...
    長(zhǎng)櫻閱讀 292評(píng)論 0 1
  • 最近,加入了一個(gè)“神秘”的組織——【超級(jí)三體-崛起研習(xí)社】 三體之一的高小上老師在第2次訓(xùn)練課上佛吓,講授了《資源清單...
    九樓女俠閱讀 284評(píng)論 1 2