You can use UIView animation and move the view from the screen
[UIView animateWithDuration:0.333f
delay:8.0f
options:UIViewAnimationCurveEaseOut
animations:^(void) {
myView.transform = CGAffineTransformMakeTranslation(0,self.view.frame.size.height);
}
completion:nil];
In this example, I move your view at the bottom of the screen, CGAffineTransformMakeTranslation(x,y)move the frame of your view at the given points x and y
And to move it, well, you get a drift;)
source
share