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.