码迷,mamicode.com
首页 > 其他好文 > 详细

UITableView 如何展示数据

时间:2014-06-21 07:04:54      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   strong   

 

如果想要在UITableView中添加数据,需要一个数据源(dateSource)来显示数据

 

1.首先添加数据源

@interface PPViewController () <UITableViewDataSource>

2.遵守协议,实现数据源

#pragma mark - 数据源

//一共有多少组数据

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

//每一组中添加多少行数据

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

//每一行数据显示的内容

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//创建cell
  UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil]

}

3.返回数据

self.TableView.dataSource = self;

4.UITableView还提供了两种头尾

//显示头部标题

(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;  

//显示尾部标题

- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section;

 

2014-06-18 

UITableView 如何展示数据,布布扣,bubuko.com

UITableView 如何展示数据

标签:style   class   blog   code   color   strong   

原文地址:http://www.cnblogs.com/pengmenss/p/3795443.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!