Bu kod iOS6 ve iOS7 altında iPhone'da sorunsuz çalışır:
presentedVC.view.backgroundColor = YOUR_COLOR; // can be with 'alpha'
presentingVC.modalPresentationStyle = UIModalPresentationCurrentContext;
[presentingVC presentViewController:presentedVC animated:YES completion:NULL];
Bu durumda slayt animasyonunu kaçırırsınız. Animasyonu korumak için aşağıdaki "zarif olmayan" uzantıyı kullanabilirsiniz:
[presentingVC presentViewController:presentedVC animated:YES completion:^{
[presentedVC dismissViewControllerAnimated:NO completion:^{
presentingVC.modalPresentationStyle = UIModalPresentationCurrentContext;
[presentingVC presentViewController:presentedVC animated:NO completion:NULL];
}];
}];
PresentV ürünümüz UINavigationController veya UITabbarController içinde bulunuyorsa, bu denetleyiciler ile presentVC olarak çalışmanız gerekir.
Ayrıca, iOS7'de UIViewControllerTransitioningDelegate
protokolü uygulayarak özel geçiş animasyonu uygulayabilirsiniz . Tabii ki, bu durumda şeffaf arka plan elde edebilirsiniz
@interface ModalViewController : UIViewController <UIViewControllerTransitioningDelegate>
İlk önce, sunmadan önce modalPresentationStyle
modalViewController.modalPresentationStyle = UIModalPresentationCustom;
Sonra iki protokol yöntemi uygulamak zorunda
- (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;
}
Son şey, CustomAnimatedTransitioning
sınıfta özel geçişinizi tanımlamaktır
@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
}
}