代码之家  ›  专栏  ›  技术社区  ›  Codebeef

uiTableView控制器和导航控制器

  •  0
  • Codebeef  · 技术社区  · 15 年前

    将UITableViewController推到导航控制器时出现问题。使用以下代码:

    ProblemEditController *problemEditController = [[[ProblemEditController alloc] initWithNibName:@"ProblemEditController" bundle:nil] retain];
    problemEditController.problem = [[Problem alloc] init];
    [self.navigationController pushViewController:problemEditController animated:YES];
    [problemEditController release];
    

    导航控制器工作正常,但是没有显示表视图。正在对我的UITableViewController调用NumberOfSectionsTableView,但未调用NumberOfRowPreagon和CellForRowatindexPath,视图显示为空。

    有什么明显的我不见了吗?

    编辑

    我在NIB文件中更改了一些内容(愚蠢,不记得是什么),现在我看到调用了numberofrowspeagon。

    2 回复  |  直到 15 年前
        1
  •  1
  •   Codebeef    15 年前

    好吧,我知道我做错了什么。我在NIB中添加了一个TableViewController,而不仅仅是添加了一个表视图。

    我基本上把在ib中查看的连接搞砸了。为了将来参考,在ib中定制的uitableviewcontroller应该是这样的:

    alt text http://pix.im/files/134/scaled.jpg?1239453713

    现在我觉得自己像个傻瓜。

        2
  •  0
  •   Pablo Santa Cruz    15 年前

    现在尝试在**ProblemEditController*上使用retain或release。

    这段代码对我来说很好:

    formationsController = [[FormationsController alloc] initWithNibName:@"Formations" bundle:nil];
    [navigationController pushViewController:formationsController animated:YES];