由于外部DataSource和Delegate,UITableView无法正确加载?

时间:2016-11-05 00:32:39

标签: ios objective-c iphone uitableview

我有UITableView。今天,我将它UITableViewDataSourceUITableViewDelegate移到了一个单独的文件中。它看起来像这样。

@interface TableDelegate : NSObject <UITableViewDelegate>

@property (nonatomic, assign) id delegate;

@end

@interface TableDataSource : NSObject <UITableViewDataSource>

@property (nonatomic, assign) id delegate;

@end



@implementation TableDelegate

@synthesize delegate;

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
    NSLog(@"heightForHeaderInSection");
    return 20.0f;
}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
    NSLog(@"header!");
    UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 20)];
    headerView.backgroundColor = [UIColor whiteColor];
    return headerView;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSLog(@"heightForRowAtIndexPath");
    return 48.0f;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [tableView deselectRowAtIndexPath:indexPath animated:NO];

    [((UIViewController *)delegate).view endEditing:YES];
}

@end

@implementation RequestTableDataSource

@synthesize delegate;

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

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    NSLog(@"numberOfRowsInSection");
    return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *MyIdentifier = @"MyIdentifier";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];

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

    NSLog(@"cellForRowAtIndexPath");

    cell.textLabel.text = @"Test";

    return cell;
}

@end

然后我构建我的UITableView,如下所示:

TableDelegate *tableDelegate = [[TableDelegate alloc] init];
tableDelegate.delegate = self;

TableDataSource *tableDataSource = [[TableDataSource alloc] init];
tableDataSource.delegate = self;

self.testTable = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
self.testTable.delegate = tableDelegate;
self.testTable.dataSource = tableDataSource;
[self.view addSubview:self.testTable];

现在,当我编译我的应用程序时,我得到一个空白的UITableView,没有任何内容。我在控制台中看到了一些日志,但没有看到cellForRowAtIndexPathviewForHeaderInSection的日志。我在这里做错了什么?

2 个答案:

答案 0 :(得分:0)

UITableView拥有对其委托和数据源的weak引用,因此您创建的那些对它们没有任何持有strong引用,并且在您的方法结束时被释放。

您应该将它们存储在视图控制器的strong属性中,这样在完成使用之前它们不会被取消分配。

答案 1 :(得分:0)

UITableViewDelegate充当与表View交互的助手,因此移动UITableViewDelegate对于代码可重用性不是一个好主意。但是UITableViewDataSource有助于为Table视图提供数据。根据苹果WWDC标题Advanced User Interfaces With Collection Views(会议232)。它实际上提升了数据源的可重用性并澄清了控制器的责任。你可以保存数据源单独的文件。请参阅github repo KPPopOverTableView作为实施它的依据。