在 TableViewcontroller 中加载 DetailViewController

发布于 2024-12-16 14:15:33 字数 1044 浏览 2 评论 0原文

我刚刚遵循了本教程:
实现 UITableView 部分NSDictionary 对象的 NSArray

这是一个很好的例子。但我想添加更多功能。我想加载一个 detailView。我按照超过5个教程来做,但每次都失败。 4个小时后,我来问你。

如何使用此示例加载 detailView

问候,范妮


已经尝试过,现在有这个代码:

- (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;

但什么也没有发生:/

I just followed this tutorial:
Implementing UITableView Sections from an NSArray of NSDictionary Objects

This is a good example. But I want to add more fonctions. I want to load a detailView. I followed more than 5 tutorials to do it, but I fail every time. After 4 hours, i'm asking you.

How can I load a detailView with this sample?

Regards, Fanny


Already tried, nowi have this code:

- (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;

But nothing appen :/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文