我是Objective-C的初学者。我有两个tableView单元格,我想以编程方式链接到不同的页面。这是我的代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.section == 0) {
[self performSegueWithIdentifier:@"show2" sender:self];
}
if (indexPath.section == 1) {
[self performSegueWithIdentifier:@"show3" sender:self];
}
}
当我点击单元格时,它们都会转到同一页面。我想要它,以便他们都去不同的页面。任何帮助,将不胜感激。谢谢!