Questo codice funziona bene su iPhone con iOS6 e iOS7:
presentedVC.view.backgroundColor = YOUR_COLOR; // can be with 'alpha'
presentingVC.modalPresentationStyle = UIModalPresentationCurrentContext;
[presentingVC presentViewController:presentedVC animated:YES completion:NULL];
In questo caso ti manca l'animazione slide-on. Per conservare l'animazione puoi comunque utilizzare la seguente estensione "non elegante":
[presentingVC presentViewController:presentedVC animated:YES completion:^{
[presentedVC dismissViewControllerAnimated:NO completion:^{
presentingVC.modalPresentationStyle = UIModalPresentationCurrentContext;
[presentingVC presentViewController:presentedVC animated:NO completion:NULL];
}];
}];
Se la nostra presentazione V si trova all'interno di UINavigationController o UITabbarController, è necessario operare con tali controller come presentandoVC.
Inoltre, in iOS7 è possibile implementare l'animazione di transizione personalizzata applicando il UIViewControllerTransitioningDelegate
protocollo. Naturalmente, in questo caso è possibile ottenere uno sfondo trasparente
@interface ModalViewController : UIViewController <UIViewControllerTransitioningDelegate>
Innanzitutto, prima di presentare devi impostare modalPresentationStyle
modalViewController.modalPresentationStyle = UIModalPresentationCustom;
Quindi devi implementare due metodi di protocollo
- (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;
}
L'ultima cosa è definire la tua transizione personalizzata in 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
}
}