我所拥有的是在单独的.xib中创建的自定义表格单元格。有了它,我为此有了一个Objective-C类。我将自定义单元格中的标签连接到自定义单元格的类。

在我的主.xib文件中,有一个TableView,将自定义单元格添加到其中。进行填充的代码在主类(ViewController.m)中。

那么如何从主类(ViewController.m)更改自定义单元格中的label

当用户点击自定义单元格时,将显示一个对话框,并根据对话框中选择的按钮更改自定义单元格中label的文本。

最佳答案

由于它是一个表格单元格,因此我假设您在表格视图中使用它。您通常通过

- (UITableViewCell *)UITableView:(UITableView *) cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"myCustomCell";
    MyCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"MyCustomCell" owner:self options:nil];
        for (id anObject in nib) {
            if ([anObject isKindOfClass:[MyCustomCell class]]) {
                cell = (MyCustomCell *)anObject;
            }
        }
    }
    cell.myLabel.text = @"Some Text"; // This will set myLabel text to "Some Text"
    return cell;
}

10-06 02:49