在我的 iphone 应用程序中,我手动创建了我的 tableview,我将其插入到视图中。
我使用此代码进行转换:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
DetailViewController *dvController = [DetailViewController alloc];
dvController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:dvController animated:YES];
[dvController release];
dvController = nil;
}
我的错误是:线程 1:程序接收到的信号:'SIGABRT' 错误已在 main.m 上修复:
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
有人可以帮助我吗?
谢谢。