为每个行目标c创建一个新的部分

时间:2013-04-02 05:30:38

标签: ios objective-c

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

#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;
}

1 个答案:

答案 0 :(得分:1)

交换

的返回值
- numberOfSectionsInTableView:

- tableView:numberOfRowsInSection:

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

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

而不是

[self.dataController objectInListAtIndex:indexPath.row]