毎日、プログラムと格闘しているラクイシ(@rakuishi07)です。 さて、UITableView の Cell に、ネットから取得した画像を表示したい場合(上図)、次のようなコードになると思います(ARC で書いています)。 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[UITableViewCell alloc]