2014-12-19 81 views
0

因此,我設計了自己的定製單元格,其中包含圖像,文本標籤和一個按鈕。 自定義單元格類是Facility 當我按一下按鈕,我調用函數:在單擊定製單元格中的按鈕時獲取包裝單元

- (IBAction)infoButtonClicked:(id)sender { 
    //Here I would like to get the string of the text label 
} 
@end 

有誰知道我該怎麼辦呢?

感謝

+0

當前是什麼類的'-infoButtonClicked:'方法? – InsertWittyName

+0

設施類.. –

+0

哦,這是自我愚蠢的我 –

回答

0

因爲你的方法被調用在同一類的標籤,你可以爲標籤訪問你的財產(出口)。

- (IBAction)infoButtonClicked:(id)sender { 
    NSString *textLabelString = self.myTextLabel.text; 
} 
+1

這個答案出現在低質量的審查隊列,可能是因爲你沒有解釋代碼。如果你解釋它(在你的答案中),你更有可能得到更多的讚揚 - 而提問者更可能學到一些東西! –

+0

添加了解釋。 – InsertWittyName

相關問題