-4
我想從我的應用程序中從NSMutableArray加載數據到我的TableView部分 我從JSON數據庫和部分下載數據計數和單元格計數都在該jSON文件中所以變量不穩定! 我想加載的NSMutableArray ObjectAtIndex在細胞(在部分)(我應檢查對象應該是在第1或第2!) 這裏是我的代碼部分:我怎麼能從表格中的NSMutableArray加載單元格
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"ProjectCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
for (int i = 0; i<[ProjectsToLoad count]; i++) {
Project *loader = [ProjectsToLoad objectAtIndex:i];
if ([loader group_id] == ([indexPath section]+1))
{
[cell.textLabel setText:[loader title]];
NSLog(@"LOADED CELL IS : %@ , %i" , [loader title] , [indexPath section]);
}
}
return cell;
}
更新:我怎樣才能返回一個單元格數組而不是返回一個單元格?
沒有「datas」這樣的詞。 – zaph
更新:我怎樣才能返回一個單元格數組而不是返回一個單元格? – kianm98
問題是什麼?你遇到了什麼錯誤 ? – userx