我正在以编程方式将图片设置为UIImage
。但我想在该视图上添加一个播放按钮。想想Facebook在图像上有一个播放按钮。这正是我想弄清楚要做什么的。这是我对UIImage
:
UIImage *img = [UIImage imageNamed:[NSString stringWithFormat:@"%d.jpg", indexPath.row]];
cell.photoView.image = img;
建议,想法?
答案 0 :(得分:1)
您可以将播放按钮添加为UIButton
或UIImageView
,并将其添加为photoview
的子视图。
[cell.photoView addSubview:urPlayButtonView];