對不起,再問全問題說明。我有什麼,我有resultsArray其中有標題說明等從服務器獲取,但問題是,我想要顯示這些數據的部分。用單個NSMutableArray填充UITableView部分表
因此可以說,如果有三個部分來自數組,那麼如何使用單個resultArray將數據填充到每個部分。
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
return [categoryArray objectAtIndex:section];
}
resutArray對所有區中的所有數據,因此如何根據部分顯示
陣列的結構
ObjectData *theObject =[[ObjectData alloc] init];
[theObject setCategory:[dict objectForKey:@"category"]];
[theObject setSub_Category:[dict objectForKey:@"sub_Category"]];
[theObject setContent_Type:[dict objectForKey:@"content_Type"]];
[theObject setContent_Title:[dict objectForKey:@"content_Title"]];
[theObject setPublisher:[dict objectForKey:@"publisher"]];
[theObject setContent_Description:[dict objectForKey:@"content_Description"]];
[theObject setContent_ID:[dict objectForKey:@"content_ID"]];
[theObject setContent_Source:[dict objectForKey:@"content_Source"]];
[resultArray addObject:theObject];
請問你會展示你的數組的結構,你存儲了哪些數據。以及您想要在部分中展示的項目。 – 2013-03-26 07:07:50
@DipenPanchasara我已添加數組的結構 – 2013-03-26 07:11:54
顯示您的代碼,然後輕鬆解決.Thansk – moosa0709 2013-03-26 08:26:24