DCModalSegue icon indicating copy to clipboard operation
DCModalSegue copied to clipboard

A custom segue which makes a pushed back modal presenting animation.

Results 5 DCModalSegue issues
Sort by recently updated
recently updated
newest added

When dismissing a controller, there is an obvious flash (or jolt) at the bottom of the screen when ending the animation. I believe this is caused when the presented /...

Previously the completion block was ignored and not called on dismissal after performing a DCModalSegue.

When calling the presentViewController in the viewDidLoad ``` [UIView animateWithDuration:kModalSeguePushedBackAnimationDuration delay:0.0 options:UIViewAnimationOptionCurveEaseInOut animations:^{ self.screenshot.alpha = 0.7; } completion:^(BOOL finished) { [self presentViewController:self.destinationController animated:YES completion:nil]; }]; ``` I get the error...

DCModalSegue is great, but after When the DCModalSegue added to my project, I found save application state method not work, Please help. //---------------------------------------------------------------------------------------------------------------------- - (BOOL)application:(UIApplication *)application shouldSaveApplicationState:(NSCoder *)coder { return...

Is there a way of using this programatically? I have a button I am adding as a subview UITabBarController and need to present a view using this transition.