このコードは、iOS6およびiOS7のiPhoneで正常に動作します。
presentedVC.view.backgroundColor = YOUR_COLOR; // can be with 'alpha'
presentingVC.modalPresentationStyle = UIModalPresentationCurrentContext;
[presentingVC presentViewController:presentedVC animated:YES completion:NULL];
この場合、スライドオンのアニメーションを見逃します。アニメーションを保持するには、次の「エレガントでない」拡張機能を使用できます。
[presentingVC presentViewController:presentedVC animated:YES completion:^{
[presentedVC dismissViewControllerAnimated:NO completion:^{
presentingVC.modalPresentationStyle = UIModalPresentationCurrentContext;
[presentingVC presentViewController:presentedVC animated:NO completion:NULL];
}];
}];
presentingVがUINavigationControllerまたはUITabbarController内にある場合は、そのコントローラーをpresentingVCとして操作する必要があります。
さらに、iOS7では、カスタム遷移アニメーション適用UIViewControllerTransitioningDelegate
プロトコルを実装できます。もちろん、この場合、透明な背景を得ることができます
@interface ModalViewController : UIViewController <UIViewControllerTransitioningDelegate>
まず、提示する前に設定する必要があります modalPresentationStyle
modalViewController.modalPresentationStyle = UIModalPresentationCustom;
次に、2つのプロトコルメソッドを実装する必要があります。
- (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;
}
最後に、CustomAnimatedTransitioning
クラスでカスタム遷移を定義します
@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
}
}