I have one view like shortcuts view with some buttons. Now when I click the shortcut button the shortcut view is appear now i want user does not touch the view how can hide the shortcuts view after 8 sec and also user touch the view before 8 sec it will appear.
Share
You could use UIView animations and move the view out of your screen
In this example I am moving your view to the bottom of the screen,
CGAffineTransformMakeTranslation(x,y)moves the frame of your view by the given x and y pointsAnd to move it back, well, you get the drift 😉