服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - iOS仿AirPods弹出动画

iOS仿AirPods弹出动画

2021-05-28 16:02Peter_Huang0623 IOS

这篇文章主要为大家详细介绍了iOS仿AirPods弹出动画的实现,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了ios仿airpods弹出动画的具体代码,供大家参考,具体内容如下

效果图

iOS仿AirPods弹出动画

预览图

思路

在当前viewcontroller下present另外一个animationviewcontroller,在弹出的animationviewcontroller中播放动画,弹出的时候原来的viewcontroller上有一个全屏覆盖的maskview,在弹出时,有一个渐变动画(页面渐黑),在animationviewcontroller声明一个代理,在代理方法中实现收起的动画效果(dissmisscontroller和maskview消失)

主要代码

?
1
2
3
4
5
6
7
8
9
10
11
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弹出的这个控制器就会覆盖在原来的控制器之上

?
1
2
3
4
5
6
7
8
9
10
- (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采用懒加载的方式实现

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- (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格式的文件,然后通过这个开源库解析成动画。

?
1
2
3
4
5
6
7
- (void)onconfirmbuttonclick
{
  if ([self.delegate respondstoselector:@selector(onairpodsanimationviewcontrollerconfirmbuttonclick:)]) {
    [self dismissviewcontrolleranimated:yes completion:nil];
    [self.delegate onairpodsanimationviewcontrollerconfirmbuttonclick:self];
  }
}

dissmiss当前的控制器,让viewcontroller来实现这个代理方法,并且在代理方法中隐藏maskview

?
1
2
3
4
5
6
- (void)onairpodsanimationviewcontrollerconfirmbuttonclick:(hcairpodsanimationviewcontroller *)vc
{
  [uiview animatewithduration:0.2 animations:^{
    self.maskbgview.alpha = 0.0;
  } completion:nil];
}

项目地址:airpodsanimation

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/Peter_Huang0623/article/details/103533619

延伸 · 阅读

精彩推荐
  • IOSiOS中MD5加密算法的介绍和使用

    iOS中MD5加密算法的介绍和使用

    MD5加密是最常用的加密方法之一,是从一段字符串中通过相应特征生成一段32位的数字字母混合码。对输入信息生成唯一的128位散列值(32个字符)。这篇文...

    LYSNote5432021-02-04
  • IOSiOS开发之视图切换

    iOS开发之视图切换

    在iOS开发中视图的切换是很频繁的,独立的视图应用在实际开发过程中并不常见,除非你的应用足够简单。在iOS开发中常用的视图切换有三种,今天我们将...

    执着丶执念5282021-01-16
  • IOSiOS实现控制屏幕常亮不变暗的方法示例

    iOS实现控制屏幕常亮不变暗的方法示例

    最近在工作中遇到了要将iOS屏幕保持常亮的需求,所以下面这篇文章主要给大家介绍了关于利用iOS如何实现控制屏幕常亮不变暗的方法,文中给出了详细的...

    随风13332021-04-02
  • IOSiOS中UILabel实现长按复制功能实例代码

    iOS中UILabel实现长按复制功能实例代码

    在iOS开发过程中,有时候会用到UILabel展示的内容,那么就设计到点击UILabel复制它上面展示的内容的功能,也就是Label长按复制功能,下面这篇文章主要给大...

    devilx12792021-04-02
  • IOSiOS开发技巧之状态栏字体颜色的设置方法

    iOS开发技巧之状态栏字体颜色的设置方法

    有时候我们需要根据不同的背景修改状态栏字体的颜色,下面这篇文章主要给大家介绍了关于iOS开发技巧之状态栏字体颜色的设置方法,文中通过示例代码...

    梦想家-mxj8922021-05-10
  • IOS详解iOS中多个网络请求的同步问题总结

    详解iOS中多个网络请求的同步问题总结

    这篇文章主要介绍了详解iOS中多个网络请求的同步问题总结,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    liang199111312021-03-15
  • IOSiOS自定义UICollectionViewFlowLayout实现图片浏览效果

    iOS自定义UICollectionViewFlowLayout实现图片浏览效果

    这篇文章主要介绍了iOS自定义UICollectionViewFlowLayout实现图片浏览效果的相关资料,需要的朋友可以参考下...

    jiangamh8882021-01-11
  • IOSiOS中滑动控制屏幕亮度和系统音量(附加AVAudioPlayer基本用法和Masonry简单使用)

    iOS中滑动控制屏幕亮度和系统音量(附加AVAudioPlayer基本用法和

    这篇文章主要介绍了iOS中滑动控制屏幕亮度和系统音量(附加AVAudioPlayer基本用法和Masonry简单使用)的相关资料,需要的朋友可以参考下...

    CodingFire13652021-02-26