Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了具有许多单元格的表格视图。
我想为格式文件中此图像定义的任何单元格设置图像。(例如,我想为许多格式文件添加许多图像(例如,当我的文件是 .mp4 时使用 mp4 等图像))
我怎样才能?
试试看.... Crete 图像数组并使用下面的代码。
cell.imageView.image = [UIImage imageNamed:[myImageArray objectAtIndex:indexPath.row]];
它是根据 indexPath.row 在你的单元格中设置图像 希望这有帮助