我正在使用来自 ray http://www.raywenderlich.com/913/sqlite-101-for-iphone-developers-making-our-app的以下教程
我让一切正常工作,除了从 didselectrow 填充的详细视图
这就是他所拥有的
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if (self.details == nil) {
self.details = [[[FailedBanksDetailViewController alloc] initWithNibName:@"FailedBanksDetailViewController" bundle:nil] autorelease];
}
FailedBankInfo *info = [_failedBankInfos objectAtIndex:indexPath.row];
_details.uniqueId = info.uniqueId;
[self.navigationController pushViewController:_details animated:YES];
[self performSegueWithIdentifier:@"testID" sender:self.view];
}
但是它不适用于情节提要
谁能帮帮我,我到处找答案!!!