我有一组评论,我将它们输出到一个分组表中。当我将sections 方法发送到[array count] 时,我希望每条评论都在它自己的tableview 部分中,它只是重复相同的组,因为数组中有许多项目。知道我该怎么做吗?我希望这是有道理的。谢谢
- 编辑 -
添加了我想要实现的图片和 cellForRow/Section/DidSelectRowMethod 的图片,我希望这能澄清一切
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath object:(PFObject *)object
{
static NSString *CellIdentifier = @"Cell";
CustomCell * cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[[CustomCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}
cell.primaryLabel.text = [object objectForKey:@"comment"];
if([[object objectForKey:@"rating"] isEqualToString:@"0"])
{
cell.myImageView.image = [UIImage imageNamed:@"rating_0.png"];
}
if([[object objectForKey:@"rating"] isEqualToString:@"1"]) {
cell.myImageView.image = [UIImage imageNamed:@"rating_1.png"];
}
if([[object objectForKey:@"rating"] isEqualToString:@"2"])
{
cell.myImageView.image = [UIImage imageNamed:@"rating_2.png"];
}
if([[object objectForKey:@"rating"] isEqualToString:@"3"])
{
cell.myImageView.image = [UIImage imageNamed:@"rating_3.png"];
}
if([[object objectForKey:@"rating"] isEqualToString:@"4"])
{
cell.myImageView.image = [UIImage imageNamed:@"rating_4.png"];
}
if([[object objectForKey:@"rating"] isEqualToString:@"5"])
{
cell.myImageView.image = [UIImage imageNamed:@"rating_5.png"];
}
return cell;
}
// Override if you need to change the ordering of objects in the table.
- (PFObject *)objectAtIndex:(NSIndexPath *)indexPath
{
return [self.objects objectAtIndex:indexPath.row];
}
#pragma mark - Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
PFObject *object = [self.objects objectAtIndex:indexPath.row];
Review *review = [[Review alloc] initWithNibName:@"Review" bundle:nil];
review.Name = [object objectForKey:@"userId"];
NSLog(@"%@",[object objectForKey:@"userId"]);
review.rating = [object objectForKey:@"rating"];
review.comments = [object objectForKey:@"comment"];
[self.navigationController pushViewController:review animated:YES];
[review release];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return [self.objects count];
}