3

这就是我最终想要做的事情。我想在 UITableView 中显示项目菜单,但要动态显示,以便显示的项目类型确定加载的自定义单元格视图。例如,假设菜单项类型为“switch”,那么它将加载一个名为“switch.xib”的 nib,并且状态将根据该特定菜单项的值打开/关闭。可能有 5 个项目是“开关”类型,但值不同。所以我想为每一个使用相同的 xib,但有 5 个实例。

所以,这个问题还有很长的路要走。当我从笔尖加载单元格视图时,我认为它需要唯一的重用标识符用于出队,以便在屏幕上回滚时,对吗?(对于每个实例,即每个菜单项都是唯一的。)在 Interface Builder 的 UITableViewCell 中,我看到了可以在哪里设置重用标识符属性,但我想在运行时为开关的每个实例设置它。例如,菜单项#1 是一个开关,#2 是一个文本字段,#3 是一个开关,等等。所以#1 和#3 都需要唯一的单元格 ID 才能出列。

这是我的 cellForRowAtIndexPath 的样子:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// Cells are unique; dequeue individual cells not generic cell formats
NSString *CellIdentifier = [NSString stringWithFormat:@"Cell%d", indexPath.row];

ITMenuItem *menuItem = [menu.menuItems objectAtIndex:indexPath.row];

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    // Load cell view from nib
    NSString *cellNib = [NSString stringWithFormat:@"MenuCell_%@", menuItem.type];
    [[NSBundle mainBundle] loadNibNamed:cellNib owner:self options:nil];
    cell = myCell;
    self.myCell = nil;
}
// Display menu item contents in cell
UILabel *cellLabel = (UILabel *) [cell viewWithTag:1];
[cellLabel setText:menuItem.name];
if ([menuItem.type isEqualToString:@"switch"]) {
    UISwitch *cellSwitch = (UISwitch *) [cell viewWithTag:2];
    [cellSwitch setOn:[menuItem.value isEqualToString:@"YES"]];
}
else if ([menuItem.type isEqualToString:@"text"]) {
    UITextField *textField = (UITextField *) [cell viewWithTag:2];
    [textField setText:menuItem.value];
}

return cell;
}
4

4 回答 4

0
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *cellIdentifier = @"Cell";
    CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if(cell == nil)
    {
        cell = [[CustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
    }
    TextFieldFormElement *item = [self.formItems objectAtIndex:indexPath.row];
    cell.labelField.text = item.label;
    return cell;
}
于 2013-05-02T13:17:17.480 回答
0

您可以在 nib 文件中设置重用标识符。因此,对于 switch.xib,您将使用 'switch' 作为重用标识符。然后只需改变

NSString *CellIdentifier = [NSString stringWithFormat:@"Cell%d", indexPath.row];

NSString *CellIdentifier = menuItem.type;

假设这menuItem.type是“开关”

于 2012-11-14T01:26:10.637 回答
0

您可以通过这样的方式加载来自 xib 文件的自定义单元格。xib 文件名与单元类名和重用 id 相同。

- (YourCell *)tableView:(UITableView *)_tableView getCellWithId:(NSString *)cellId
{
        YourCell *cell;

        /* Cell id and xib have the same name. */
        cell = [_tableView dequeueReusableCellWithIdentifier:cellId];
        if (cell == nil) {
                NSArray *nib = [[NSBundle mainBundle] loadNibNamed:cellId owner:self options:nil];
                cell = [nib objectAtIndex:0];
        }
        return cell;
}
于 2020-01-23T17:23:45.747 回答
0

对于我的想法,如果您的类型不是太多,请在不同的 xib 和 swift 文件中设计每个单元格。主要针对性能问题。

如果无法出队,请给他们不同的标识符。您可以为 tableview 或 collection view 注册多个标识符(我们的一个应用程序以这种方式使用 12 个不同的单元格。)

但是以这种方式处理 IBActions 会有点混乱。

于 2019-12-23T15:51:34.047 回答