使用RootController的多视图TableView

时间:2011-04-25 22:55:33

标签: objective-c cocoa-touch uitableview uinavigationcontroller

我正在尝试使用导航模板创建一个多视图应用。我希望桌子位于初始视图的底部,顶部有其他视图(图像视图,标签等)。

最初我修改了RootViewController.xib以调整tableview的大小,并添加了图像视图,但除了全尺寸表外没有显示任何内容。

所以我修改了RootViewController.xib来添加UIView,然后在该视图中添加了一个UITableView和UIImageView。我为tableView添加了IBOutlet。在我的RootViewController.xib中,File'S Owner(RootViewController)与视图和表视图有出口连接。当我右键单击UITableView时,我看到文件所有者的引用插座。当我右键单击UIView时,我看到文件所有者的引用插座。 (我没有UIImageView的出口,因为我不修改代码;我需要一个吗?)。

然而,当我启动应用程序时,它会崩溃并显示消息:

  

'NSInternalInconsistencyException',
      原因:' - [UITableViewController loadView]加载了“RootViewController”笔尖,但没有得到UITableView。'

这是cellForRowAtIndexPath方法:

- (UITableViewCell *)tableView:(UITableView *)tableView
         cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *QuizIdentifier = @"QuizIdentifier";

    UITableViewCell *cell =
    [tableView dequeueReusableCellWithIdentifier:QuizIdentifier];

    if (cell == nil) {
        cell = [[[UITableViewCell alloc]
                 initWithStyle:UITableViewCellStyleDefault
                 reuseIdentifier:QuizIdentifier]
                autorelease];
    }

    // Configure the cell.

    UIImage *_image = [UIImage imageNamed:@"icon"];
    cell.imageView.image = _image;

    NSInteger row = [indexPath row];
    cell.textLabel.text = [_categories objectAtIndex:row];

    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

    return cell;
}

1 个答案:

答案 0 :(得分:0)

您收到该错误是因为当您创建基于导航的iOS应用时,Xcode会使RootViewController成为UITableViewController的子类。将UITableView与普通UIView合并后,您的子类不再符合UITableViewController类。因此,在RootViewController.m和.h文件中,将UITableViewController更改为UIViewController。您可能还需要在init方法中更改其他一些内容,但让我们从这开始。

试试这个:

- (UITableViewCell *)tableView:(UITableView *)tableView 
         cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    NSLog(@"\n\nI'm in Root / cellForRowAtIndexPath");

    static NSString *QuizIdentifier = @"QuizIdentifier";

    UITableViewCell *cell = 
    [tableView dequeueReusableCellWithIdentifier:QuizIdentifier];

    if (cell == nil) {
        cell = [[[UITableViewCell alloc]
                 initWithStyle:UITableViewCellStyleDefault
                 reuseIdentifier:QuizIdentifier]
                autorelease];
        UIImage *_image = [UIImage imageNamed:@"icon"];
        cell.imageView.image = _image;
        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }

    // Configure the cell.
    NSInteger row = [indexPath row];
    cell.textLabel.text = [_categories objectAtIndex:row];

    NSLog(@"  We are at row %i with label %@ ", row, cell.textLabel.text);

    return cell;
}