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 have 3 viewControllers that appear in sequence, A -> B -> C

A calls B using

[self.navigationController pushViewController:controllerB animated:YES];

C calls B by

[self.navigationController popViewControllerAnimated:YES];

is there a way for B to know who called it, A or C?

thanks.

share|improve this question
I think the question you should be asking yourself is "WHY does B need to know who called it?". – Nick Bull Oct 1 '12 at 13:30

5 Answers

up vote 2 down vote accepted

You can use the NavigationControllers viewControllers property. To see which items are in the navigation stack.

The root view controller is at index 0 in the array, the back view controller is at index n-2, and the top controller is at index n-1, where n is the number of items in the array.

You want the view controller at index n-2.

http://developer.apple.com/library/ios/#documentation/uikit/reference/UINavigationController_Class/Reference/Reference.html

Edit (Added Example)

NSString *previousView = NSStringFromClass([[self.navigationController.viewControllers objectAtIndex:(self.navigationController.viewControllers.count - 2)] class]);
if([previousView isEqualToString:@"SettingsViewController"]){
     // Do something
}
share|improve this answer
Thanks, but I don't get this. If the root view controller is 0 and suppose in my case it calls A, so A =1, then B =2 and C = 3. If I assume that B is n, so A is n-1 and C is n+1. This is how I understand it. So, if I come from C, there will be no n+1, as C is being popped out of the array... right? – RubberDuck Oct 1 '12 at 14:14
n-2 would be the view that called B. So in your case it should show A or C. n-2 is simply the view that was previously present in other words, the view the Navigation Controller would go back to when you press the back button in the navigation bar. – AndyDev Oct 1 '12 at 14:55
I am not sure if I understand that to a point of creating a code... but anyway, thanks. – RubberDuck Oct 1 '12 at 19:14
Apologies, I explained it pretty poorly. I have added an example to my post which should help. – AndyDev Oct 1 '12 at 19:34
ahhhhh, thanks for the code!!!!!! – RubberDuck Oct 2 '12 at 6:54
show 1 more comment

Yeah.

Make a @property of type UIViewController named comingFrom (or whatever you want). And when you push it, just set it's property to the current class.

share|improve this answer

One way I can think of, which I use when I reuse view controllers, is to set a property on the view controller that you can query. Alloc/init your view controller, set your property (NSString or NSInteger), and push the view. That way you can use code to query that property about who created and pushed the view.

Simple, but effective.

share|improve this answer

Yes, you can create some enum say ClassA and ClassC and while pushing or poping just assign that enum the corresponding value.

share|improve this answer

If B calls from A, -(void)viewDidLoad{} method will be call, If B calls from C that method should not call, so you can put variable globally, and assign some value in viewDidLoad() method. And remove that value when you push C, then in viewWillAppear method you know, where it is form.

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.