因此,我設計了自己的定製單元格,其中包含圖像,文本標籤和一個按鈕。 自定義單元格類是Facility
當我按一下按鈕,我調用函數:在單擊定製單元格中的按鈕時獲取包裝單元
- (IBAction)infoButtonClicked:(id)sender {
//Here I would like to get the string of the text label
}
@end
有誰知道我該怎麼辦呢?
感謝
因此,我設計了自己的定製單元格,其中包含圖像,文本標籤和一個按鈕。 自定義單元格類是Facility
當我按一下按鈕,我調用函數:在單擊定製單元格中的按鈕時獲取包裝單元
- (IBAction)infoButtonClicked:(id)sender {
//Here I would like to get the string of the text label
}
@end
有誰知道我該怎麼辦呢?
感謝
因爲你的方法被調用在同一類的標籤,你可以爲標籤訪問你的財產(出口)。
- (IBAction)infoButtonClicked:(id)sender {
NSString *textLabelString = self.myTextLabel.text;
}
這個答案出現在低質量的審查隊列,可能是因爲你沒有解釋代碼。如果你解釋它(在你的答案中),你更有可能得到更多的讚揚 - 而提問者更可能學到一些東西! –
添加了解釋。 – InsertWittyName
當前是什麼類的'-infoButtonClicked:'方法? – InsertWittyName
設施類.. –
哦,這是自我愚蠢的我 –