在我的項目中,我有自定義UITableview
單元,其中恰好有一個按鈕。當這個按鈕被選中時,它會觸發一個繼續。在此segue中,我將一個對象從單元傳遞到目標UIViewcontroller
。我目前使用下面的代碼故事板自定義UITableviewcell選擇
else if ([[segue identifier] isEqualToString:@"Add"])
{
SearchAddRecordViewController *addRecordViewController = [segue destinationViewController];
NSIndexPath *path = [self.tableView indexPathForSelectedRow];
SearchCell *cell = [self.tableView cellForRowAtIndexPath:path];
NSLog(@"%@", cell.record);
addRecordViewController.workingRecord = cell.record;
}
原來我路過空,因爲按鈕沒有觸發細胞的選擇,因此沒有indexPathForSelectedRow。我的問題是,如何獲得按下按鈕的單元格的索引路徑。
編輯: 回答
這將如何幫助我?問題是我無法從按鈕訪問單元格。按鈕會觸發segue,也許我可以在按鈕上使用某種標籤?我不知道如何使用Storyboard製作動態標籤,儘管 – dkirlin 2013-05-08 07:31:14