現在、これは機能しています。サーバーから動的データを取得し、各行に結果を入力します。私がやりたいことは、各行に新しいセクションを用意することです。私はそれを理解できないようです。どんな助けでも素晴らしいでしょう。ありがとう
#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;
}