A really simple question here.
How do you create a view like this?

It has to
UIView has all the methods you need, e.g.
[myView addSubview:imgView] to add the image view to the current view (myView)[imgView removeFromSuperview] when finish (i.e. in respond to tap or after a timer)Make sure userInteractionEnabled property of imgView to NO so that touches are passed to myView.