このコードでは、奇妙な問題が発生しています。NSMutableArrayからUITableViewを取り込む
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
if (accounts != nil) {
NSLog(@"Cell: %@", indexPath.row);
cell.textLabel.text = [self.accounts objectAtIndex: indexPath.row];
}
else
{
NSLog(@"No cells!");
[cell.textLabel setText:@"No Accounts"];
}
return cell;
}
私のテーブルビューは、すべての行が私のNSMutableArray
、accounts
内の最初の項目が含まれている以外、うまく読み込まれます。私はindexPath.row
の値を記録しており、配列にいくつの値が入っていても(null)にとどまります。私はここで何か間違っていますか?
cellForRowAtIndexPathが一度だけ呼び出されているかどうかについては、numberOfRowsを確認してください:) –