所以我设计了自己的自定义单元格,其中包含图像,文本标签和按钮。
自定义单元格的类是Facility
当我单击按钮时,我调用函数:
- (IBAction)infoButtonClicked:(id)sender {
//Here I would like to get the string of the text label
}
@end
有谁知道我怎么做?
由于
答案 0 :(得分:0)
由于您的方法是在与标签相同的类中调用的,因此您可以访问该标签的属性(插座)。
- (IBAction)infoButtonClicked:(id)sender {
NSString *textLabelString = self.myTextLabel.text;
}