您能帮我理解和/修复以下错误吗?我不了解CustomCellViewUItableViewCell的子类。代码已编译,但警告仍然存在:

Incompatible pointer type initializing 'CustomCellView *' with an expression of type `UItableViewCell`

我在下面突出显示了第二行:
static NSString *CellIdentifier = @"CustomCell";
CustomCellView *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

最佳答案

static NSString *CellIdentifier = @"CustomCell";
CustomCellView *cell =(CustomCellView*) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

,您需要将强制类型转换输入到单元格

08-16 16:35