Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to make an animation that will come in from the right, displaying the new view.

[UIView beginAnimations:nil context:nil];
        [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
        [UIView setAnimationDelay:.5f];
        [UIView setAnimationDuration:0.5f];


// display view controller
[UIView commitAnimations];

What should I add here??

share|improve this question
Give more details... – iProgrammer Aug 27 '11 at 7:53
How can a make another view slide in from the right???! – Vova Stajilov Aug 27 '11 at 7:59

2 Answers

up vote 1 down vote accepted

IF you have navigationController then use

NextViewcontroller *nextView = [NextViewcontroller alloc]initWithNibName@"NextViewcontroller"
bundle:nil];

[self.navigationController pushViewcontroller:nextView animated:YES];

[nextView release];
share|improve this answer
but if I don't?) I have view-based application) – Vova Stajilov Aug 27 '11 at 10:27

How about adding the view as a subView to your current view, then set its place to be outside the current visible area. After which you set your animation to change your subViews position to overlap the current view.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.