How to dismiss a view controller and return to it's parent view controller?

3.3k Views Asked by At

I have a popup view from another view controller with an XIB file. It launches from a parent VC (detailViewController) and but the dismiss code is within its own VC (KNThirdViewController)

I'm using this code: https://github.com/kentnguyen/KNSemiModalViewController/blob/master/KNSemiModalViewControllerDemo/KNThirdViewController.xib

When this is called from (KNThirdViewController)

- (IBAction)dismissButtonDidTouch:(id)sender {
    [self dismissModalViewControllerAnimated:NO];
}

The app returns to the rootViewController and not the detailViewController. It should simply dismiss itself (the KNThirdViewController popup VC) and return the user to detailViewController.

The view controller is presented with:

-(void)scriviBtnPress {

// You can also present a UIViewController with complex views in it
// and optionally containing an explicit dismiss button for semi modal
[self presentSemiViewController:semiVC withOptions:@{
 KNSemiModalOptionKeys.pushParentBack    : @(YES),
 KNSemiModalOptionKeys.animationDuration : @(0.5),
 KNSemiModalOptionKeys.shadowOpacity     : @(0.3),
 }];

}

2

There are 2 best solutions below

3
On BEST ANSWER

dismissModalViewControllerAnimated: method is deprecated in iOS 6.0. why don't try with dismissViewControllerAnimated:completion:

0
On

Try like this :

[self.presentingViewController.presentingViewController dismissViewControllerAnimated:YES completion:NULL];