gpt4 book ai didi

ios - 在 'mylabel' 类型的对象上找不到属性 'uitableviewcell'

转载 作者:行者123 更新时间:2023-11-28 21:34:24 26 4
gpt4 key购买 nike

我正在尝试从 storyboard 连接一个标签并得到这个错误

Property 'mylabel' not found on object of type 'uitableviewcell'

FilterDemoTableViewController.m

cell.mylabel.text = food.name;

screenshot of error in FilterDemoTableViewController.m

#import <UIKit/UIKit.h>

@interface TableViewCell : UITableViewCell

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


@end

最佳答案

在使用您的单元格之前,您必须转换到您的类型。

TableViewCell *cell = (TableViewCell *)[tableView dequeueReusableCellWithIdentifier:@"Cell"];
cell.mylabel.text = food.name;

现在可以正常访问了。

关于ios - 在 'mylabel' 类型的对象上找不到属性 'uitableviewcell',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34500626/

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