0

现在这正在工作。我从服务器中提取动态数据并用我的结果填充每一行。我想要做的是每一行都有一个新的部分。我似乎无法弄清楚,任何帮助都会很棒。谢谢

#pragma mark - Table View
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSLog(@"count the list %i",[self.dataController countOfList]);
    return [self.dataController countOfList];

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

    static NSString *CellIdentifier = @"ShowDeals";


    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    Deals *dealAtIndex = [self.dataController objectInListAtIndex:indexPath.row];
    [[cell textLabel] setText:dealAtIndex.name];
    NSString *dollarSign = @"$";
    NSString *dealPrice = [dollarSign stringByAppendingString:dealAtIndex.price];

    [[cell detailTextLabel] setText:dealPrice];

    return cell;
}

我想要这样的东西,但它只是一遍又一遍地在单行中填充相同的日期。

#pragma mark - Table View
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return [self.dataController countOfList];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSLog(@"count the list %i",[self.dataController countOfList]);
    return 1;

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

    static NSString *CellIdentifier = @"ShowDeals";


    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    Deals *dealAtIndex = [self.dataController objectInListAtIndex:indexPath.row];
    [[cell textLabel] setText:dealAtIndex.name];
    NSString *dollarSign = @"$";
    NSString *dealPrice = [dollarSign stringByAppendingString:dealAtIndex.price];

    [[cell detailTextLabel] setText:dealPrice];

    return cell;
}
4

1 回答 1

1

交换返回值

- numberOfSectionsInTableView:

- tableView:numberOfRowsInSection:

(看来你已经这样做了),并使用

[self.dataController objectInListAtIndex:indexPath.section]
                                             this  ^^^^^^^

代替

[self.dataController objectInListAtIndex:indexPath.row]
于 2013-04-02T05:32:31.657 回答