我有一个 UITableView,我为其创建了一个自定义 UITableViewCell。tableview 中的每一行都有一个按钮。我想知道单击按钮时的部分编号,以便我知道单击了哪个部分按钮。我已经尝试过在堆栈上找到的一些东西,但没有任何效果。
UIButton *b = sender;
NSIndexPath *path = [NSIndexPath indexPathForRow:b.tag inSection:0];
NSLog(@"Row %d - Section : %d", path.row, path.section);