I have view controllers A, B, C, D. Current view controller is A.
I need to present D from A. And then when I dismiss D I should see C. When I dismiss C, I should see B.
It's easy to implement with navigation controller stack, but I don't know if it's possible to implement this with modal view controllers stack.
Yes, First set property to those all view controller I mean like: @property (nonatomic,strong) UIViewController * viewa,*viewb,*viewc,*viewd;
You can switch the viewcontroller like:
[self presentViewController: viewb animated:NO completion:nil];
So add this statement from wherever you want to change the viewcontroller.
Try this.
I am doing the same in my app and its working.
Or when u want to dismiss view then use this:-
[[self presentingViewController] dismissViewControllerAnimated:YES completion:nil];