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

It has to overlay the first time user runs this part of the app and be removed forever once the user taps on it. I understand it should be a UIImageView, but how do you make it active and then remove it from the view forever?
You can add your subview just after your app launch in the
didFinishLaunchingWithOptionsmethod of your app delegate by using theaddSubViewmethod of theUIViewclass. Here are some code snippets of how you could proceed:Note that you will need a property to reference your imageView in the
handleTapmethod.