How can I move a view from bottom to top on my code:
colorView.hidden=NO;
colorView=[[UIView alloc]init];
colorView.frame=CGRectMake(0,480,320, 480);
colorV
Initially, add your view:
self.postStatusView.frame = CGRectMake(0, 490, 320, 460);
For the animation from bottom to top add below:
[UIView animateWithDuration:0.5
delay:0.1
options: UIViewAnimationOptionCurveEaseIn
animations:^{
self.postStatusView.frame = CGRectMake(0, 0, 320, 460);
}
completion:^(BOOL finished){
}];
[self.view addSubview:self.postStatusView];
For removing the view
[UIView animateWithDuration:1.5
delay:0.5
options: UIViewAnimationOptionCurveEaseIn
animations:^{
self.postStatusView.frame = CGRectMake(0, 490, 320, 460);
}
completion:^(BOOL finished){
if (finished)
[self.postStatusView removeFromSuperview];
}];