0

テーブルビューに人が表示されるアプリを書いています。

これはPictureListMainTable.mのコードです

// Get the core data object we need to use to populate this table cell
Pictures *currentCell = [pictureListData objectAtIndex:indexPath.row];

UIImageView *myImg = (UIImageView *)[cell viewWithTag:100];




//  Fill in the cell contents
cell.textLabel.text = [currentCell title];
cell.detailTextLabel.text = [currentCell desc];
cell.imageView.contentMode = UIViewContentModeScaleAspectFit;
cell.imageView.image = [UIImage imageWithData:[currentCell smallPicture]];



cell.telephoneNumber = [currentCell desc];

cell.delegate = self;

return cell;

私はこのようなことを達成しようとしています:

動的な名前と画像

私が何をすべきかについてのアイデアはありますか?

4

0 に答える 0