3

我需要从一个单独的类设置我的 UITableView 委托和数据源(通过方法调用解析后准备好数据),但每次我的表都是空的。我正在使用 ARC,这是简化的代码:

//HomeViewController.h

#import <UIKit/UIKit.h>
#import "TableController.h"

@interface HomeViewController : UIViewController {

    IBOutlet UITableView *table;
    TableController *tableController;
}

@end

//HomeViewController.m

#import "HomeViewController.h"

@interface HomeViewController ()

@end

@implementation HomeViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    tableController = [[TableController alloc] init];
    table.dataSource = tableController.tableSource.dataSource;
    table.delegate = tableController.tableSource.delegate;
    [tableController loadTable]; // HERE I CALL LOADTABLE FROM TABLECONTROLLER CLASS TO PARSE DATA AND POPULATE UITABLEVIEW
    [table reloadData];

}

// TableController.h

#import <UIKit/UIKit.h>

@interface TableController : NSObject <UITableViewDelegate, UITableViewDataSource> {

   UITableView *tableSource;

   // a lot of NSMutableArray to parse my data

}

- (void)loadTable;

@property (nonatomic, strong) UITableView *tableSource;

@end

//TableController.m

#import "TableController.h"
#import "AFNetworking.h"

@interface TableController ()

@end

@implementation TableController

@synthesize tableSource;

- (void)loadTable {

    NSURL *parseURL = // remote URL to parse Data
    NSURLRequest *request = [NSURLRequest requestWithURL:parseURL];
    AFJSONRequestOperation *parseOperation = [AFJSONRequestOperation
                                               JSONRequestOperationWithRequest:request
                                               success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {

                                                   // code to parse Data and NSLog to test operation

                                                   [tableSource reloadData];
                                                   [tableSource setUserInteractionEnabled:YES];
                                                   [tableSource scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:YES];

                                               }
                                               failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
                                                   NSLog(@"%@", [error userInfo]);
                                               }];
    [parseOperation start];
    [tableSource setUserInteractionEnabled:NO];
}

而且,显然,仍然在 TableController.m 中,所有经典的 UITableView 委托方法:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// my code
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// my code
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
// my code
}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
// my code
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
// my code
}

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
// my code
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// my code
}

好吧,解析是完美的(我可以用 NSLog 测试它),但我的是空的。你能帮我吗?

编辑:在我的代码loadTable中,解析方法是异步的,因此使用正确的数据源和委托加载表,但在解析所有数据之前;事实上,如果我设置一个固定的 numberOfRows 然后 SCROLL TABLE 我可以看到所有填充的行。但是,当我加载 HomeViewController 时,*table 仍然是 EMPTY。

4

1 回答 1

7

从哪里/如何UITableView *tableSource在 TableController 中设置对象?

还可以尝试在主线程中重新加载 tableview。

编辑

在您的 HomeController viewDidLoad 中更改这些

   table.dataSource = tableController.tableSource.dataSource;
   table.delegate = tableController.tableSource.delegate;

   table.dataSource = tableController;
   table.delegate = tableController;

一旦你得到响应,也将设置HomeController类作为 & 的代表。TableController调用一个方法HomeController来重新加载表格视图(在主线程中)!!!

为此,首先创建一个像这样property parentTableController .h file

@property(nonatomic,retain) id parent;

然后将 HomeController 设置为HomeControllerviewDiDLoad 的委托,例如

tableController.parent = self.

一旦你在完成块调用中得到响应,

[self.parent reloadTableView];// reloadTableView 将是一个HomeController函数[self.table reloadData]

希望这能解决问题。

于 2013-03-14T11:54:22.457 回答