ios - Setting an background image over an image set for a UIImageView - Objective C -
i setting images uiimage
programmatically. want add play button on view. think of facebook in how there play button on image. trying figure out on do. here setting of uiimage
:
uiimage *img = [uiimage imagenamed:[nsstring stringwithformat:@"%d.jpg", indexpath.row]]; cell.photoview.image = img;
suggestions, thoughts?
you can add playbutton either uibutton
or uiimageview
, add subview photoview
.
[cell.photoview addsubview:urplaybuttonview];
Comments
Post a Comment