现在这是有效的。我从服务器提取动态数据,并用我的结果填充每一行。我想要做的是每行都有一个新的部分。我似乎无法弄明白,任何帮助都会很棒。感谢
#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;
}
答案 0 :(得分:1)
交换
的返回值- numberOfSectionsInTableView:
和
- tableView:numberOfRowsInSection:
(看来你已经这样做了),并使用
[self.dataController objectInListAtIndex:indexPath.section]
this ^^^^^^^
而不是
[self.dataController objectInListAtIndex:indexPath.row]