現在這是行得通的。我從服務器中獲取動態數據,並在每行中填充我的結果。我想要做的是每行都有一個新的部分。我似乎無法弄清楚,任何幫助都會很棒。謝謝爲每一行的目標創建一個新的部分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;
}
當然,確實如此,請檢查您如何獲取數據。 – 2013-04-02 05:34:07