gpt4 book ai didi

ios - 向从 Storyboard 构建的 UITableView 添加行

转载 作者:行者123 更新时间:2023-11-28 22:52:35 26 4
gpt4 key购买 nike

我有一个静态的UITableView,它是从一个运行良好的 Storyboard 构建的。不过,我想从用户定义的文件中以编程方式填充第一类

简单地说,我想遍历数组中的所有字符串,并将它们添加为第一类行的单元格。对于第二类,我在 Storyboard中定义了一系列稍微复杂的单元格(包含许多标签、文本字段、按钮和其他控件),我不想在代码中重新创建它们。

据我所知,从 Storyboard构建的UITableView 的默认行为是使用nib 文件作为隐式数据源 .如果我使用自定义类作为 datasource,我的第二部分将不起作用。我想到了两种可能的方法来解决这个问题:

  • datasource 中填充我的第一个类别,并将其余的委托(delegate)给 nib 文件。这可能吗?是否有某种方法可以通过编程方式要求 nib 填充我的 UITableView
  • 将 Storyboard构建的单元格导出到代码中,并将此代码粘贴到我的数据源中。这种方法的缺点是使我的第二个类别更难修改。

这两个选项中的一个可行吗?还有其他选择吗?

最佳答案

我会使用动态原型(prototype)单元格。然后,我会将 ViewController 设置为 delegatedataSource。然后,我将创建 UITableViewCell 的自定义子类,并将第二部分的元素连接到自定义 UITableViewCell 中的 IBOutlet

如果第一部分不能用其中一种通用单元格类型完成,我也会为该部分创建 UITableViewCell 的自定义子类。

然后我会使用 cellForRowAtIndexPath: 方法来设置单元格,其中包含我想要的信息。因此,如果我的第一部分使用 FirstSectionCell 而我的第二部分使用 SecondSectionCell 作为 UITableViewCell 的自定义子类,我的 cellForRowAtIndexPath: 将看起来像这样:

-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

if(indexPath.section==0)
{
FirstSectionCell *firstCell = [tableView dequeueReusableCellWithIdentifier:@"First Cell Prototype"];

//Set up the first cell.

return firstCell;
}
else if(indexPath.section ==1)
{
SecondSectionCell *secondCell = [tableView dequeueReusableCellWithIdentifier:@"Second Cell Ptototype"];

//Set up second cell.
secondCell.someLabel.text = @"whatever";
//etc.

return secondCell;
}
else
{
//if you have another section handle it here.
}
}

关于ios - 向从 Storyboard 构建的 UITableView 添加行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11580210/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com