一,UITableView控件使用必备,红色部分是易错点和难点

首先创建一个项目,要使用UITableView就需要实现协议<UITableViewDataSource>,数据源协议主要完成对tableView外观设置,必须实现的方法有两个:

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

着重理解:UITableViewDataSource是数据源协议,主要控制tableView设置的数据,比如行高,页眉页脚,分组等

1,首先在ViewController里面实例化UITableView

- (void)viewDidLoad
{
    [super viewDidLoad];
    UITableView *tableView=[[UITableView alloc]initWithFrame:self.view.bounds];

tableView.dataSource=(id)self;
    [self.view addSubview:tableView];
    // Do any additional setup after loading the view, typically from a nib.
}
2,实现必须的两个方法

这个方法主要实现在每个section里面有几行

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 14;
}

  这个是在每行里面创建cell
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
    cell.backgroundColor=[UIColor grayColor];
    return cell;
}

3,其他常用方法

设置在tableView中有几个section

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 4;
}

这样就完成了一个最简单的tableview

//------------------------------------------------------------------------------------------------------

4,进阶练习

下面的例子中aa,bb数组可以是省份数组,这样就可以对省份进行分组简单应用,本例子简单,一看就应该明白

- (void)viewDidLoad
{
    [super viewDidLoad];

//创建两个数组,实际应用中可以是任何数据源,此处为了练习分组
    _aa=[NSArray arrayWithObjects:@"11",@"22", nil];
    _bb=[NSArray arrayWithObjects:@"QQ",@"DD",@"EE",@"FF", nil];

//首先必须实例化一个tableView对象,然后加入到根视图
    _bb=[NSArray arrayWithObjects:@"QQ",@"DD",@"EE",@"FF", nil];
    UITableView *tableView=[[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStyleGrouped];这里的style一共有两种格式,另一个是UITableViewStylePlain平铺模式,分组模式一般都是在多个section的时候才使用,运行此程序看看两者的区别
    tableView.dataSource=(id)self;//此处是最容易忘记添加的地方,如果没有这个部分的声明,下面的代理方法都没用.
    [self.view addSubview:tableView];
    // Do any additional setup after loading the view, typically from a nib.
}
//ios系统赋予的内存警告,如果内存不够用的时候会触发此方法
- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
//设置tableView中section的个数,也就是分组个数
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 2;
}

//每组的行数
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    //如果是0 section,则在第一部分显示aa数组里的内容
    if (section==0) {//如果是第一组,则返回aa数组中的个数
        return self.aa.count;
    }//如果是1 section,则在第二部分显示bb数组里的内容更
    else if(section==1)
        return self.bb.count;
    return 14;
}
//创建cell,当滚动的时候也会触发此方法,可以动态生成cell,节约系统资源,后面会详解
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
    if (indexPath.section==0) {
        cell.textLabel.text=self.aa[indexPath.row];
    }
    else if(indexPath.section==1)cell.textLabel.text=self.bb[indexPath.row];
    
    cell.backgroundColor=[UIColor grayColor];
    return cell;
}
@end
运行以上程序查看效果如图:

查看手机会发现很多应用的分组都有标题,如下(阅读列表),还有页脚(使用....)这些都是可以设置的,以上程序运行出来之后,我们来扩展页眉页脚

//此方法返回字符串,这个字符串就是放在页眉部分的字
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    return section==0?@"aa数组内容":@"bb数组内容";
}
//此方法返回字符串,这个字符串就是放在页脚部分的字
-(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
return section==0?@"aa数组页脚":@"bb数组页脚";
}

UITableView详解(1)的更多相关文章

  1. UITableView 详解 ()

    (原本取至D了个L微信公众号) UITableView 详解 一.建立 UITableView DataTable = [[UITableView alloc] initWithFrame:CGRec ...

  2. UITableView详解(2)

    承接上文,再续本文 一,首先我们对上次的代码进行改进,需要知道的一点是,滚动视图的时候,我们要创建几个视图,如果一个视图显示一个图片占据整个屏幕,对于滚动视图我们只需要创建三个视图就可以显示几千给图片 ...

  3. 【转】UITableView详解(UITableViewCell

    原文网址:http://www.kancloud.cn/digest/ios-1/107420 上一节中,我们定义的cell比较单一,只是单调的输入文本和插入图片,但是在实际开发中,有的cell上面有 ...

  4. UITableView详解(转)

    首先.对UITableView进行讲解,下面有对它进行实际的应用 UITableView 显示大型内容的列表 单行,多列 垂直滚动,没有水平滚动 大量的数据集 性能强大,而且普遍存在于iPhone的应 ...

  5. UITableView 详解 教程

    看TableView的资料其实已经蛮久了,一直想写点儿东西,却总是因为各种原因拖延,今天晚上有时间静下心来记录一些最近学习的TableView的知识.下面进入正题,UITableView堪称UIKit ...

  6. UITableView详解

    一.建立 UITableView DataTable = [[UITableView alloc] initWithFrame:CGRectMake(, , , )]; [DataTable setD ...

  7. 《iOS 7 应用开发实战详解》

    <iOS 7 应用开发实战详解> 基本信息 作者: 朱元波    管蕾 出版社:人民邮电出版社 ISBN:9787115343697 上架时间:2014-4-25 出版日期:2014 年5 ...

  8. iPhone应用开发 UITableView学习点滴详解

    iPhone应用开发 UITableView学习点滴详解是本文要介绍的内容,内容不多,主要是以代码实现UITableView的学习点滴,我们来看内容. -.建立 UITableView DataTab ...

  9. IOS中表视图(UITableView)使用详解

    IOS中UITableView使用总结 一.初始化方法 - (instancetype)initWithFrame:(CGRect)frame style:(UITableViewStyle)styl ...

随机推荐

  1. 集成 Apple Pay

    作者感言 在中秋过后终于把国内的三大支付平台SDK集成都搞定了, 现在我们终于可以来研究Apple自家的支付Apple Pay最后:如果你有更好的建议或者对这篇文章有不满的地方, 请联系我, 我会参考 ...

  2. oracle用户

    如果要了解oracle中用户信息,可以查询数据字典dba_users.在sql*plus中,使用system用户登录,查询语句如下: select username,account_status fr ...

  3. PDF 补丁丁 0.4.2.891 测试版发布:合并PDF文件时设置书签文本和样式

    新的测试版在合并文件界面增加了设置书签样式的功能.除了可以为所合并的图片(或PDF文件)指定书签文本之外,还可以指定其文本样式(文本颜色.粗体.斜体).如下图所示. 此外,合并文件界面还添加了文件夹历 ...

  4. c++自己困惑之处

    1 typedef 可以把类型名重命名. 例如 typedef int my_i; my_i a; a为整型变量. typedef struct node *tree;       struct no ...

  5. elasticsearch nested查询

    项目里可能会遇到多级嵌套的情况,实际上最多两级,三级及以上,我测试不通过. 一级索引时,我插入数据,会自动创建索引映射:然二级时,索引映射必须手动创建. 映射: PUT test999 { " ...

  6. Python的排序

    1.reversed() 这个很好理解,reversed英文意思就是:adj. 颠倒的:相反的:(判决等)撤销的 print list(reversed(['dream','a','have','I' ...

  7. win7 MS SQL SERVER 2000安装

    http://blog.chinaunix.net/uid-24398518-id-2156226.html MicrosoftInternetExplorer402DocumentNotSpecif ...

  8. 过滤器 Filter

    Filter(过滤器)简介 Filter 的基本功能是对发送到 Servlet 的请求进行拦截, 并对响应也进行拦截. Filter 程序是一个实现了 Filter 接口的 Java 类,与 Serv ...

  9. Java 类的一些高级特征

    1. 面向对象的特征二:继承性 * 1.为什么要设计继承性? 继承的出现提高了代码的复用性. 继承的出现让类与类之间产生了关系,提供了多态的前提. * 2.通过"class A extend ...

  10. ASP.Net Chart Control -----Bar and Column Charts

    StackedBar  StackedColumn StackedArea <asp:CHART id="Chart1" runat="server" H ...