Esse código funciona bem no iPhone em iOS6 e iOS7:
presentedVC.view.backgroundColor = YOUR_COLOR; // can be with 'alpha'
presentingVC.modalPresentationStyle = UIModalPresentationCurrentContext;
[presentingVC presentViewController:presentedVC animated:YES completion:NULL];
Nesse caso, você perde a animação deslizante. Para manter a animação, você ainda pode usar a seguinte extensão "não elegante":
[presentingVC presentViewController:presentedVC animated:YES completion:^{
[presentedVC dismissViewControllerAnimated:NO completion:^{
presentingVC.modalPresentationStyle = UIModalPresentationCurrentContext;
[presentingVC presentViewController:presentedVC animated:NO completion:NULL];
}];
}];
Se nossa apresentaçãoV estiver localizada dentro do UINavigationController ou UITabbarController, você precisará operar com esses controladores como apresentandoVC.
Além disso, no iOS7, você pode implementar a animação de transição personalizada, aplicando o UIViewControllerTransitioningDelegate
protocolo. Claro, neste caso, você pode obter um fundo transparente
@interface ModalViewController : UIViewController <UIViewControllerTransitioningDelegate>
Primeiro, antes de apresentar, você deve definir modalPresentationStyle
modalViewController.modalPresentationStyle = UIModalPresentationCustom;
Então você tem que implementar dois métodos de protocolo
- (id<UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source
{
CustomAnimatedTransitioning *transitioning = [CustomAnimatedTransitioning new];
transitioning.presenting = YES;
return transitioning;
}
- (id<UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed
{
CustomAnimatedTransitioning * transitioning = [CustomAnimatedTransitioning new];
transitioning.presenting = NO;
return transitioning;
}
A última coisa é definir sua transição personalizada na CustomAnimatedTransitioning
classe
@interface CustomAnimatedTransitioning : NSObject <UIViewControllerAnimatedTransitioning>
@property (nonatomic) BOOL presenting;
@end
@implementation CurrentContextTransitionAnimator
- (NSTimeInterval)transitionDuration:(id <UIViewControllerContextTransitioning>)transitionContext
{
return 0.25;
}
- (void)animateTransition:(id <UIViewControllerContextTransitioning>)transitionContext
{
UIViewController *fromViewController = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
UIViewController *toViewController = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
if (self.presenting) {
// custom presenting animation
}
else {
// custom dismissing animation
}
}