码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 在一个TableView内使用不同的Cell

时间:2015-08-05 12:44:22      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

通过Identifier标记不同的Cell,实现不同Cell的重用:

 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.row % 2) 
    {
        static NSString *ID1 = @"CellA";
       
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID1];
       
        if (!cell)
        {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID1];
        }
       
        cell.textLabel.text = @"A";
       
        return cell;
    }
    else
    {
        static NSString *ID2 = @"CellB";
       
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID2];
       
        if (!cell)
        {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID2];
        }
       
        cell.textLabel.text = @"B";
       
        return cell;
    }
}

 

iOS 在一个TableView内使用不同的Cell

标签:

原文地址:http://www.cnblogs.com/happyplane/p/4704293.html

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