這是我的nsarray有兩個字符串的日誌。[__NSArrayI objectAtIndex:]:index 2 beyond bounds [0 .. 1]'
GROUPSFORDISPLAY (
"Serie A",
"Serie B"
這正是我想在tableviewcells中顯示的內容,但是應用程序正在崩潰。我使用的代碼是:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath object:(PFObject *)object {
static NSString *CellIdentifier = @"Cell";
PFTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[PFTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
NSString *series = [_seriesForDisplay objectAtIndex:indexPath.row];
cell.textLabel.text = series;
謝謝。
你要返回多少行數? –
這與'xcode IDE'有什麼關係? – Popeye
您在'_seriesForDisplay'中期待了多少物品? –