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 に答える