作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在调用一些 JSON 并使用单个数组中的数据加载一个表。效果很好。现在我想弄清楚
A.将数据加载到表中的最佳方式
B. 分割数据的最佳方式。
这是我进行 iOS 开发的第 6 周,我还是个新手。我的 Javascript 背景相当薄弱。
我的第一个(失败的尝试)方法是将数组连接在一起并将其传递给 TableView 。我认为这是错误的,原因有很多(事后分段的问题,知道要删除“哪个”,等等)。非常感谢任何帮助!
无效:
NSDictionary *dataDictionary = [NSJSONSerialization JSONObjectWithData:responseObject options:0 error:&errorJson];
self.allGroups = [dataDictionary objectForKey:@"all_groups"]; //NSDictionary
self.firstGroup = [self.allGroups objectForKey:@"first_group"]; //NSMutableArray
self.secondGroup = [self.allGroups objectForKey:@"second_group"]; //NSMutableArray
self.thirdGroup = [self.allGroups objectForKey:@"third_group"]; //NSMutableArray
NSMutableArray *allGroupsArray = [self.firstGroup arrayByAddingObjectsInArray:[self.secondGroup arrayByAddingObjectsInArray:self.thirdGroup]];
现在可以工作了,但是无法在 tableview 中找出多个数组:
-(void) getTheData {
NSString *sessionToken = [[AFOAuthCredential retrieveCredentialWithIdentifier:@"myToken"] accessToken];
if (sessionToken == nil) {
LoginViewController *loginView = [[LoginViewController alloc] init];
[self presentViewController:loginView animated:NO completion:nil];
return;
}
NSURL *url = [NSURL URLWithString:@"https://greatwebsitetogetdata.com"];
AFOAuth2Client *oauthClient = [AFOAuth2Client clientWithBaseURL:url clientID:@"MY_CLIENT" secret:@"1234567890abc"];
[oauthClient getPath:@"/api/v1/json" parameters:@{@"access_token": sessionToken} success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSError *errorJson = nil;
NSDictionary *dataDictionary = [NSJSONSerialization JSONObjectWithData:responseObject options:0 error:&errorJson];
self.allGroups = [dataDictionary objectForKey:@"all_groups"]; //This is a NSDictionary
self.firstGroup = [self.allGroups objectForKey:@"first_group"]; //This is a NSMutableArray
self.secondGroup = [self.allGroups objectForKey:@"second_group"]; //This is a NSMutableArray
self.thirdGroup = [self.allGroups objectForKey:@"third_group"]; //This is a NSMutableArray
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.firstGroup.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSDictionary *groupInfo = self.firstGroup[indexPath.row];
static NSString *cellIdentifier = @"Cell";
groupTableViewCell *cell = (groupTableViewCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) {
cell = [[groupTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}
cell.groupTitle.text= groupInfo[@"title"];
cell.groupLikes.text= [NSString stringWithFormat:@"%@", groupInfo[@"likes"]];
cell.groupRunDates.text= [NSString stringWithFormat:@"%@ - %@", groupInfo[@"start_date"], groupInfo[@"end_date"]];
cell.groupAcceptance.text= groupInfo[@"acceptance_type"];
return cell;
}
最佳答案
我认为数组的数组更适合您,其中每个数组代表一个部分。 allGroups 应包含 3 个数组。然后你需要覆盖数据源方法:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return self.allGroups.count;
}
然后在:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.allGroups[section];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSArray *group = self.allGroups[indexPath.section];
NSDictionary *groupInfo = group[indexPath.row];
static NSString *cellIdentifier = @"Cell";
groupTableViewCell *cell = (groupTableViewCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) {
cell = [[groupTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}
cell.groupTitle.text= groupInfo[@"title"];
cell.groupLikes.text= [NSString stringWithFormat:@"%@", groupInfo[@"likes"]];
cell.groupRunDates.text= [NSString stringWithFormat:@"%@ - %@", groupInfo[@"start_date"], groupInfo[@"end_date"]];
cell.groupAcceptance.text= groupInfo[@"acceptance_type"];
return cell;
}
关于ios - 如何将多个数组加载到 UITableView 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22794558/
我是一名优秀的程序员,十分优秀!