gpt4 book ai didi

ios - PFQueryTableViewController 两部分有两个数据源

转载 作者:行者123 更新时间:2023-11-29 12:43:28 24 4
gpt4 key购买 nike

我想要一个包含两个部分的 PFQueryTableViewController:

  • 第 1 部分:显示查询的 PFObjects(地址簿中正在使用该应用程序的联系人)
  • 第 2 部分:显示数组的对象(地址簿中所有联系人的列表)

目前我正在设置部分的数量:

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

我正在设置每个部分的行数:

- (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if (section == 1)
{
return [self.contacts count];
}
else
{
return [self.objects count];
}
return 1;
}

当我尝试显示单元格的内容时,我在滚动时崩溃了:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath object:(PFObject *)object {
static NSString *CellIdentifier = @"Cell";
PFTableViewCell *cell = (PFTableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[PFTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
}

if (indexPath.section == 0)
{
UILabel *name = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
name.text = object[@"username"];
[cell addSubview:name];
}
else
{
UILabel *name = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
name.text = [self.contacts objectAtIndex:indexPath.row];
[cell addSubview:name];
NSLog(@"%@", [self.contacts objectAtIndex:20]);
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;
}

我收到错误:[__NSArrayM objectAtIndex:]: index 2 beyond bounds [0 .. 1] 原因一定是因为 PFObject 的每一行都被查询第 1 和第 2 部分以及第 2 部分中的更多对象,它会在滚动时自动越界和崩溃。

PFQueryTableViewController 中显示带有两个 dataSource 的两个部分的最佳方式是什么?我必须在 UITableViewController 中嵌入 PFQueryTableViewController 吗?

最佳答案

我不认为 PFQueryTableViewController 在这里能很好地为您服务。最好使用常规 UITableViewController,并将两个查询组合并显示在表中。 PFQTVC 旨在与一个数据源一起使用。

关于ios - PFQueryTableViewController 两部分有两个数据源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24260973/

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