IOS开发之——headView和footView

一 概述

本文在UITableView的基础上,追加headView头布局和footView尾部局:

  • headView:常用语显示轮播图
  • footView:常用来做下拉加载

二 效果图

三 代码

3.1 OC模式下(ViewController.m)

1
2
3
4
5
6
7
8
9
//headView
UIView *head=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 130)];
head.backgroundColor=[UIColor blueColor];
self.tableView.tableHeaderView=head;

//footView
UIView *foot=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 44)];
foot.backgroundColor=[UIColor redColor];
self.tableView.tableFooterView=foot;