gpt4 book ai didi

objective-c - 解析后的 UITableView 委托(delegate)和数据源在单独的类中

转载 作者:搜寻专家 更新时间:2023-10-30 19:57:54 24 4
gpt4 key购买 nike

我需要从一个单独的类中设置我的 UITableView 委托(delegate)和数据源(通过方法调用解析后数据准备就绪),但每次我的表都是空的。我正在使用 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];
}

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

- (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 解析方法是异步的,因此在解析所有数据之前使用正确的数据源和委托(delegate)加载表;事实上,如果我设置一个固定的 numberOfRows 然后滚动表,我可以看到填充的所有行。但是,当我加载 HomeViewController 时,*table 仍然是空的。

最佳答案

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

也尝试在主线程中重新加载 tableview。

编辑

在你的 HomeController viewDidLoad 中改变这些

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

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

同时设置 HomeController 类作为 TableController 的委托(delegate),一旦你得到响应。调用 HomeController 中的方法重新加载 tableview(在主线程中)!!!

为此,首先在您的 TableController .h 文件 中创建一个property parent,如下所示

@property(nonatomic,retain) id parent;

然后将 HomeController 设置为 HomeController viewDiDLoad 的委托(delegate),例如

tableController.parent = self

一旦您在完成 block 调用中得到响应,

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

希望这能解决问题。

关于objective-c - 解析后的 UITableView 委托(delegate)和数据源在单独的类中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15407844/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com