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

拖拉控件TableView的使用

时间:2015-12-11 09:54:10      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

 

拖拉控件TableView关系如下:

技术分享

并且要在cellForRow方法里面添加如下代码:

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    FirstTableViewCell *cell = (FirstTableViewCell *)[tableView dequeueReusableCellWithIdentifier:@"FirstCellReuse"];
    if (cell == nil) {
        NSArray * nib = [[NSBundle mainBundle]loadNibNamed:@"FirstTableViewCell" owner:self options:nil];
        cell = [nib objectAtIndex:0];
    }
    cell.nameLabel.text = self.array[indexPath.row];
    return cell;
}
再实现它的delegate和datasource就可以了

拖拉控件TableView的使用

标签:

原文地址:http://www.cnblogs.com/songtingting/p/5038026.html

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