本篇文章給大家分享的是有關iOS中怎么實現一個AirPods彈出動畫,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
目前累計服務客戶上1000家,積累了豐富的產品開發及服務經驗。以網站設計水平和技術實力,樹立企業形象,為客戶提供成都網站制作、網站設計、外貿網站建設、網站策劃、網頁設計、網絡營銷、VI設計、網站改版、漏洞修補等服務。創新互聯始終以務實、誠信為根本,不斷創新和提高建站品質,通過對領先技術的掌握、對創意設計的研究、對客戶形象的視覺傳遞、對應用系統的結合,為客戶提供更好的一站式互聯網解決方案,攜手廣大客戶,共同發展進步。思路
在當前ViewController下Present另外一個AnimationViewController,在彈出的AnimationViewController中播放動畫,彈出的時候原來的ViewController上有一個全屏覆蓋的maskView,在彈出時,有一個漸變動畫(頁面漸黑),在AnimationViewController聲明一個代理,在代理方法中實現收起的動畫效果(dissmissController和maskView消失)
主要代碼
HCAirPodsAnimationViewController *vc = [[HCAirPodsAnimationViewController alloc] init]; vc.delegate = self; vc.modalPresentationStyle = UIModalPresentationOverCurrentContext; [UIView animateWithDuration:0.2 animations:^{ self.maskBgView.alpha = 0.5; } completion:nil]; [self presentViewController:vc animated:YES completion:^{ [vc.animationView play]; }];
模態跳轉的style有一個枚舉值,在iOS13以前modalPresentationStyle的默認值為UIModalPresentationFullScreen,iOS13以后變成了UIModalPresentationPageSheet,在這里我們把style設置為UIModalPresentationOverCurrentContext彈出的這個控制器就會覆蓋在原來的控制器之上
- (UIView *)maskBgView { if (!_maskBgView) { _maskBgView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height)]; _maskBgView.backgroundColor = [UIColor blackColor]; _maskBgView.alpha = 0; [self.view addSubview:_maskBgView]; } return _maskBgView; }
一個覆蓋全屏的maskView采用懶加載的方式實現
- (void)initContentView { CGFloat containerW = SCREEN_WIDTH - 20; CGFloat containerH = containerW * 0.9; UIView *containerView = [[UIView alloc] initWithFrame:CGRectMake(10, SCREEN_HEIGHT - containerH - 10, containerW, containerH)]; containerView.layer.cornerRadius = 20; containerView.backgroundColor = [UIColor whiteColor]; [self.view addSubview:containerView]; self.animationView = [[LOTAnimationView alloc] initWithFrame:CGRectMake(70, 70, containerW - 140, containerH - 140)]; [containerView addSubview:self.animationView]; self.animationView.animation = @"gift_animation"; self.animationView.loopAnimation = YES; UIButton *confirmButton = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 200, 34)]; confirmButton.center = CGPointMake(self.animationView.center.x, containerH - 44); [confirmButton setTitle:@"Close" forState:UIControlStateNormal]; [confirmButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; [confirmButton setBackgroundColor:[UIColor blueColor]]; confirmButton.layer.cornerRadius = 10; [confirmButton addTarget:self action:@selector(onConfirmButtonClick) forControlEvents:UIControlEventTouchUpInside]; [containerView addSubview:confirmButton]; }
動畫這里用到的是Lottie這個動畫開源庫(Airbnb),這個開源庫主要的功能是可以將After Effects制作的動畫通過插件導出為json格式的文件,然后通過這個開源庫解析成動畫。
- (void)onConfirmButtonClick { if ([self.delegate respondsToSelector:@selector(onAirPodsAnimationViewControllerConfirmButtonClick:)]) { [self dismissViewControllerAnimated:YES completion:nil]; [self.delegate onAirPodsAnimationViewControllerConfirmButtonClick:self]; } }
dissmiss當前的控制器,讓viewController來實現這個代理方法,并且在代理方法中隱藏maskView
- (void)onAirPodsAnimationViewControllerConfirmButtonClick:(HCAirPodsAnimationViewController *)vc { [UIView animateWithDuration:0.2 animations:^{ self.maskBgView.alpha = 0.0; } completion:nil]; }
以上就是iOS中怎么實現一個AirPods彈出動畫,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注創新互聯網站建設公司行業資訊頻道。
另外有需要云服務器可以了解下創新互聯建站vcdvsql.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業上云的綜合解決方案,具有“安全穩定、簡單易用、服務可用性高、性價比高”等特點與優勢,專為企業上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
當前文章:iOS中怎么實現一個AirPods彈出動畫-創新互聯
瀏覽路徑:http://vcdvsql.cn/article12/iiedc.html
成都網站建設公司_創新互聯,為您提供虛擬主機、網站營銷、網站改版、商城網站、靜態網站、Google
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯