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.
- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated

This function load a view from right side. How can I Load a view from left side?

share|improve this question
Try this link stackoverflow.com/questions/1096092/… – MicRO Dec 6 '12 at 6:38
for your kind attention, actually you are trying to push a new view controller, not a UIView. – MicRO Dec 6 '12 at 6:40
oh my bad :).. thanks Dpk – Harikrishnan Dec 6 '12 at 7:21
its ok dude, but, the fact is, if you are trying to add a new UIView you can do it easily using UIView with Animation, but if you are navigating to a New UIViewController you cannot do it in the below suggested ways – MicRO Dec 6 '12 at 7:23

4 Answers

up vote 6 down vote accepted

Here it is

CATransition *animation = [CATransition animation];
[[self navigationController] pushViewController:elementController animated:NO];
[animation setDuration:0.45];
[animation setType:kCATransitionPush];
[animation setSubtype:kCATransitionFromLeft];
[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionDefault]];
[[elementController.view layer] addAnimation:animation forKey:@"SwitchToView1"];

For this you have to #import <QuartzCore/QuartzCore.h>

share|improve this answer
...+1 for nice one... – Kamarshad Dec 6 '12 at 6:37
Awesome..Thank you so much.Got exactly what I need. – Harikrishnan Dec 6 '12 at 6:58
Thanks iOS-Deveoper and Hari you're welcome :) – Inder Kumar Rathore Dec 6 '12 at 7:00
Unfortunately I couldn't vote up your answer, since I dont have enough reputation for it :( – Harikrishnan Dec 6 '12 at 7:04
It's all right dude... Do it when you have enough :) – Inder Kumar Rathore Dec 6 '12 at 7:06
show 2 more comments

don't think there is a readymade way to do that. You will have to animate the view yourself using animateWithDuration:delay:options:animations:completion: or animateWithDuration:animations:completion: (or any other animation methods) and change frames of your view accordingly so that it animates from the right side. Hope this helps :)

share|improve this answer
@divya +1 For The Same..... – Kamarshad Dec 6 '12 at 6:38
@InderKumarRathore what? – MicRO Dec 6 '12 at 6:41
@Divya +1 for your sincere reply, try my comment , that link will help – MicRO Dec 6 '12 at 6:41
@Dpk I thought you are my friend Deepak.. but you are not he used to type his name as "Dpk" – Inder Kumar Rathore Dec 6 '12 at 6:58
1  
@InderKumarRathore oh..its ok man... everyone here are friends! – MicRO Dec 6 '12 at 7:04
show 1 more comment

if you already been pushed to a viewController you can use this:

[self.navigationController popViewControllerAnimated:YES]
share|improve this answer
1  
He as to push the view... – Inder Kumar Rathore Dec 6 '12 at 6:30
@InderKumarRathore Yes u r right......+1 for the same... – Kamarshad Dec 6 '12 at 6:38
@iOS-Deveoper thanks :) – Inder Kumar Rathore Dec 6 '12 at 6:40
im talking about a case as i described up – Mutawe Dec 6 '12 at 7:01
Thanks every one... – Harikrishnan Dec 6 '12 at 7:23

Similar question already asked here, have a look upon it. The correct answer is with the tick.

share|improve this answer
this shows how to add subview via animation right, here the question is how to navigate to new view controller, any solution for that? – MicRO Dec 6 '12 at 6:29

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.