真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

UIKit框架(10)自定義modal過渡效果-創(chuàng)新互聯(lián)

上一篇文章介紹了如何進行modal方式的頁面切換

創(chuàng)新互聯(lián)-專業(yè)網站定制、快速模板網站建設、高性價比英山網站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式英山網站制作公司更省心,省錢,快速模板網站建設找我們,業(yè)務覆蓋英山地區(qū)。費用合理售后完善,十載實體公司更值得信賴。

自定義的目的控制器在modal切換時完全覆蓋源控制器,本篇文章介紹如何實現一個自定義的過渡效果

實現的效果描述:

    目的控制器:占據屏幕的二分之一大小,且居中,并在源控制器上覆蓋著一個陰影效果,點擊陰影時目的控制器返回

  • UIPresentationController

用于描述目的控制器通過modal方式切換的過渡效果

實現其子類,可以自定義出特殊的效果

實現步驟:

  1. 定義過渡效果:實現UIPresentationController子類

  2. 目的控制器,遵循過渡協(xié)議,設置過渡控制器對象

  3. 源控制器進行modal切換

UIPresentationController的屬性:

@property(nonatomic, retain, readonly) UIViewController *presentedViewController   //目的控制器
@property(nonatomic, retain, readonly) UIViewController*presentingViewController   //源控制器
- (UIView *)presentedView  //目的view
     @property(nonatomic, readonly) UIView *containerView  //源view

  • UIPresentationController的子類應重寫的方法

1)init方法,可以創(chuàng)建其他輔助過渡效果的view

- (instancetype)initWithPresentedViewController:(UIViewController*)presentedViewController presentingViewController:(UIViewController*)presentingViewController

    如:

- (instancetype)initWithPresentedViewController:(UIViewController*)presentedViewController presentingViewController:(UIViewController*)presentingViewController {    
    if ( self = [super initWithPresentedViewController:presentedViewController presentingViewController:presentingViewController] ) {
        _shadowBtn = [UIButton buttonWithType:UIButtonTypeCustom];
        //陰影按鈕的初始狀態(tài)是隱藏的
        _shadowBtn.backgroundColor = [UIColor grayColor];
        _shadowBtn.alpha = 0.f;
    }
}

2)重寫presentationTransitionWillbegin方法,定義實現過渡效果

- (void)presentationTransitionWillBegin

    如:

- (void)presentationTransitionWillBegin
{
    [self.containerView addSubview:_shadowBtn];
    [self.containerView addSubview:self.presentedView];
    _shadowBtn.frame = self.containerView.bounds;
    id  coordinate = self.presetingViewController.transitionCoordinator;
    [coordinate animateAlongsideTransition:^(id _Nonnull context) {
        _shadowBtn.alpha = 0.5;
    } completion:nil];
}

    使用到UIViewController的transitionCoordinator,表示過渡效果的協(xié)助器

     協(xié)助器的animateAlongsideTransition方法定義過渡期間的動畫效果

3)重寫presentationTransitionDidEnd方法,定義過渡效果后的清理工作。

    特別是過渡未完成時的清理動作

- (void)presentationTransitionDidEnd:(BOOL)completed
- (void)presentationTransitionDidEnd:(BOOL)completed
{
    if ( !completed ) {
        [_shadowBtn removeFromSuperview];
    }
}

4)重寫frameOfPresentedViewInContainerView,設置被顯示視圖的frame

- (CGRect)frameOfPresentedViewInContainerView
- (CGRect)frameOfPresentedViewInContainerView
{
    CGFloat x, y, w, h;
    w = self.containerView.frame.size.width/2;
    h = self.containerView.frame.size.height/2;
    x = self.containerView.frame.size.width/4;
    y = self.containerView.frame.size.height/4;
    return CGRectMake(x, y, w, h);
}

5)重寫dismissTransitionWillBegin方法,設置返回的過渡效果

- (void)dismissalTransitionWillBegin
- (void)dismissalTransitionWillBegin
{
    id coordinator = self.presetingViewController.transitionCoordinator;
    [coordinator animateAlongsideTransition:^(id _Nonull context) {
        _shadowBtn.alpha = 0.01;
    } completion:nil];
}

6)重寫dismissalTransitionDidEnd方法,執(zhí)行清理動作

- (void)dismissalTransitionDidEnd:(BOOL)completed
- (void)dismissalTransitionDidEnd:(BOOL)completed
{
    if ( completed ) {
        [_shadowView removeFromSuperview];
    }
}

  • 目的控制器設置過渡效果

目的控制器遵循代理協(xié)議

@interface AMDestViewController () 

設置代理

self.transitioningDelegate = self;

實現代理方法

- (UIPresetationController *) presentationControllerForPresentedViewController:(UIViewController*) presented presentingViewController:(UIViewController*) presenting sourceViewController:(UIViewController*) source
{
    return [[AMPresentationController alloc] initWithPresentedViewController:presented presentingViewController:presenting];
}

  • 源控制器進行modal切換

iOS8.0開始支持這種自定義的過渡效果,主要要設置目的控制器的modalPresentationStyle為自定義。

這種切換方式,在iPhone和iPad上都是可用的。

AMDestViewController * vc = [[AMDestViewController alloct] init];
vc.modalPresentationStyle = UIModalPresentationCustom;
[self presentViewController:vc animated:YES completion:nil];

另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。


當前標題:UIKit框架(10)自定義modal過渡效果-創(chuàng)新互聯(lián)
URL地址:http://weahome.cn/article/psess.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部