だから私はこれに対する答えを探していましたが、まだそれを理解することができません. 15 個程度の画像を含む配列があるため、UITableViewCell のサブビューを使用して表示しようとしています。以下のコード - 問題を修正するために autorelease/release を使用して言及したものはすべて読んだことがありますが、それを行おうとすると単純に ARC エラーが発生します。どんな助けでも大歓迎です。
- (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];
}
int countthis = indexPath.row;
NSString *image = imgarr[countthis];
UIImageView *iv = [[UIImageView alloc] initWithFrame:(CGRect){.size={320, tableView.rowHeight}}];
iv.image = [UIImage imageNamed:image];
cell.imageView.image = iv.image;
return cell;
}