2012-12-01 83 views

回答

3

請檢查您是否映射動作來回您的按鈕,並繼續與這個..

-(void)yourButtonClicked:(id)sender { 
    CustomCell *clickedCell = [[sender superView]superView]; 
    NSindexPath *indexPath = [YourTableViewObject indexPathForCell:clickedCell]; 
    NSLog(@"%d %d",indexPath.section,indexPath.row); 
} 

這裏你得到行爲您點擊的單元格。

Th你可以很容易地改變你的標籤文本..通過

clickedCell.yourLabel.text = @"Your string"; 
相關問題