你可以做类似的事情,
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.row == 0)
[self performSegueWithIdentifier:@"YourSegueIdentifierHere" sender:self];
else if (indexPath.row == 1)
[self performSegueWithIdentifier:@"YourSecondSegueIdentifierHere" sender:self];
else if (indexPath.row == 2)
[self performSegueWithIdentifier:@"YourThirdSegueIdentifierHere" sender:self];
}
switch (indexPath.row)
或者在这种情况下您也可以选择 a 。
indexPath
每个细胞都是独一无二的,indexPath.row
可indexPath.section
用于区分不同部分的不同细胞。