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