属性 'mylabel' 未在 'uitableviewcell' 类型的对象上找到
Property 'mylabel' not found on object of type 'uitableviewcell'
我正在尝试连接来自 storyboard
的标签并获取此 error
。
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
在使用你的 cell
之前,你必须 cast 到你的类型。
TableViewCell *cell = (TableViewCell *)[tableView dequeueReusableCellWithIdentifier:@"Cell"];
cell.mylabel.text = food.name;
现在可以正常访问了
我正在尝试连接来自 storyboard
的标签并获取此 error
。
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
在使用你的 cell
之前,你必须 cast 到你的类型。
TableViewCell *cell = (TableViewCell *)[tableView dequeueReusableCellWithIdentifier:@"Cell"];
cell.mylabel.text = food.name;
现在可以正常访问了