我刚刚听完了这个教程:
Implementing UITableView Sections from an NSArray of NSDictionary Objects
这是一个很好的例子。但我想增加更多的功能。我想加载detailView
。我按照了5个以上的教程来完成它,但每次都失败了。 4个小时后,我问你。
如何使用此示例加载detailView
?
问候,范妮
已经尝试过,nowi有这个代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *selectedRow = nil;
NSDictionary *dictionary = [self.books objectAtIndex:indexPath.row];
selectedRow = [dictionary objectForKey:@"Title"];
//Initialize the detail view controller and display it.
DetailViewController *dvController = [[DetailViewController alloc] initWithNibName:@"DetailView" bundle:[NSBundle mainBundle]];
dvController.selectedRow = selectedRow;
[self.navigationController pushViewController:dvController animated:YES];
[dvController release];
dvController = nil;
但没有任何事情:/
答案 0 :(得分:0)