我提供了一个带有插座属性的UITableViewCell
子类MyCell
(为了连接笔尖):
@interface MyCell : UITableViewCell
@property (nonatomic, strong) IBOutlet UILabel* theLabel;
@end
然后我合成theLabel
. 然后我想使用属性名称来访问单元格:
MyCell *theCell = (MyCell *)cell;
UILabel *lab = theCell.theLabel;
当我使用属性名称访问单元格时,我收到一条错误消息:
[UITableViewCell theLabel]: unrecognized selector
我似乎错过了什么。为什么会抛出异常?