首页 > 代码库 > UITableView 如何展示数据
UITableView 如何展示数据
如果想要在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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。