1

我想在 UITableView 中显示一些不同类别的媒体(例如,最受关注的、已加星标的)。我创建了APPParentViewController哪个实现UITableViewDataSourceUITableViewDelegate协议。在cellForRowAtIndexPath方法 in 中APPParentViewController,我返回适当的单元格,该单元格中填充了来自数组的数据。

该数组实际上是init在 的子类中的方法中实例化的APPParentViewController,我将其示例性地称为APPChildViewController。每个媒体类别都有一个APPChildViewController。它们只是在实例化数组的方式上有所不同,可以说是数组的内容。

APPChildViewController我在另一个 UIViewController ( ) 中实例化所有类,[[APPChildViewController alloc] init]然后最初选择一个APPChildViewController来查看(所有这些都发生在该 UIViewController 的 viewDidLoad 方法中)。工作至今。

但是当我想APPChildViewController简单地通过删除旧视图并添加请求的视图来显示另一个时(当用户通过按下按钮请求它时),我得到以下异常:

*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:' ***

这是我正在使用的代码(我删除了我认为不重要的所有内容,所以我希望它仍然可以理解):

APPParentViewController.h

#import <UIKit/UIKit.h>

@interface APPParentViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
@property (strong, nonatomic) NSArray *media;
@property (strong, nonatomic) UITableView *tableView;
@end

APPParentViewController.m

#import "APPParentViewController.h"
#import "APPCell.h"

@interface APPParentViewController ()
@end

@implementation APPParentViewController
@synthesize media;
@synthesize tableView;

-(void)viewDidLoad
{
     self.tableView = [[UITableView alloc] init];
     [self.view addSubview:self.tableView];

     self.tableView.delegate = self;
     self.tableView.dataSource = self;
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
     return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
     return [self.media count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
     static NSString *CellTableIdentifier = @"CellTableIdentifier";
     static BOOL nibsRegistered = NO;
     if (!nibsRegistered) {
         UINib *nib = [UINib nibWithNibName:@"APPCell" bundle:nil];
         [self.tableView registerNib:nib forCellReuseIdentifier:CellTableIdentifier];
         nibsRegistered = YES;
     }

     APPCell *cell = [self.tableView dequeueReusableCellWithIdentifier: CellTableIdentifier];
     NSUInteger row = [indexPath row];
     NSDictionary *rowData = [self.media objectAtIndex:row];
     cell.title = [rowData objectForKey:@"Title"];
     return cell;
}
@end

APPChildViewController.h

#import "APPParentViewController.h"
@interface APPChildViewController : APPParentViewController
@end

APPChildViewController.m

#import "APPChildViewController.h"
#import "APPCell.h"

@interface APPChildViewController ()
@end

@implementation APPChildViewController

- (id)init
{
     self = [super init];
     if (self) {
          self.media = fill array...
     }
     return self;
}

当我将 cellForRowAtIndexPath 方法实现复制到所有子类时它实际上可以工作,但这显然不是继承的工作方式......

4

1 回答 1

0

当您进行切换时,一些单元格将引用旧孩子的媒体,如果该对象消失了,哦:

NSDictionary *rowData = [self.media objectAtIndex:row];

尽快切换数据源,您是否发送:

 [self.tableView reloadData];

我假设(希望!)你只有父母拥有的一个笔尖......

于 2012-09-06T21:28:03.907 回答