gpt4 book ai didi

iphone - 无法更改 iOS 中原型(prototype)单元格的标签

转载 作者:行者123 更新时间:2023-11-28 20:21:36 25 4
gpt4 key购买 nike

我有一个带有标签的原型(prototype)单元格

@property (nonatomic, strong) IBOutlet UILabel *itemName; 

在 ECOMAdmPanelViewCell 类中声明,该类是为身份检查器中的单元格设置的。导出 itemName - 标签已创建。

在这个函数中

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"admPanelCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
if (cell == nil)
cell = [[ECOMAdmPanelViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cell.itemName.text = [items objectAtIndex:indexPath.row];

// Configure the cell...

return cell;
}

我收到错误消息属性“itemName”未在“UITableViewCell”类型的对象上找到。谁能告诉我哪里出了问题?

最佳答案

改变你的这一行

 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

有了这个

 ECOMAdmPanelViewCell *cell = (ECOMAdmPanelViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

关于iphone - 无法更改 iOS 中原型(prototype)单元格的标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15699228/

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