我已经基于故事板构建了我的应用程序。我已经创建了自定义单元,并在Identity Inspector中设置了类(PlayerCell)。我现在要动态设置一个不同的单元格-(ReplacementPlayerCell)-有些球队有替换球员,有些没有。
我怎么做?我是否必须放下Storyboard并以编程方式全部完成?

最佳答案

您可以使用像这样的单元格标识符来执行此操作

 if (indexPath.row == 0)
        {
            static NSString *cellId = @"tblBubbleHeaderCell";
            UIMessageHeaderTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellId];
            return cell;
        }

    // Standard bubble
    static NSString *cellId = @"tblMessageCell";
    UIMessageTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellId];

关于ios - 使用 Storyboard 时加载不同的UITableViewCell,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21228144/

10-09 01:47