我有一個UITableView我爲其創建了一個自定義的UITableViewCell。 tableview中的每一行都有一個按鈕。我想知道點擊一個按鈕的部分編號,以便我知道點擊了哪個部分的按鈕。我已經嘗試了幾個堆棧中找到的東西,但沒有任何工作。如何知道UITableView中按鈕點擊Tableview單元格的段號?
UIButton *b = sender;
NSIndexPath *path = [NSIndexPath indexPathForRow:b.tag inSection:0];
NSLog(@"Row %d - Section : %d", path.row, path.section);
顯示一些代碼,你試過這是不適合你的工作。 –
UIButton * b =發件人; NSIndexPath * path = [NSIndexPath indexPathForRow:b.tag inSection:0]; (@「Row%d - Section:%d」,path.row,path.section); –