UIImage
画像を表示していません。UIImageView
以下を使用して、テーブルセルのカスタムクラスを作成しました。
imgView = [[UIImageView alloc]init];
frame= CGRectMake(boundsX+10 ,0, 50, 44);
imgView.frame = frame;
次に、各セルをロードしようとしましたが、何もロードしませんでした。しかし、ログメッセージで画像のURLを読み取ることができます。
NSURL *url = [NSURL URLWithString: [dict objectForKey:@"imageAdd"]];
NSData *data = [NSData dataWithContentsOfURL: url];
UIImage * image = [[UIImage alloc] initWithData:[[data copy] autorelease]];
NSLog (@"The image is located at the URL: %@", url);
cell.imgView.image = image;
return cell;