加入收藏 | 设为首页 | 会员中心 | 我要投稿 西安站长网 (https://www.029zz.com.cn/)- 容器服务、建站、数据迁移、云安全、机器学习!
当前位置: 首页 > 教程 > 正文

ios View 淡入淡出效果的代码详解

发布时间:2023-12-14 23:05:41 所属栏目:教程 来源:DaWei
导读:
  下面代码段是关于ios View 淡入淡出效果的代码,希望能对各位也有好处。



  - (void)TheAnimation{



   animation.delegate = self;

  下面代码段是关于ios View 淡入淡出效果的代码,希望能对各位也有好处。
 
  - (void)TheAnimation{
 
      animation.delegate = self;
 
      animation.timingFunction = UIViewAnimationCurveEaseInOut;
 
      NSUInteger f = [[rView subviews] indexOfObject:fView];
 
      NSUInteger z = [[rView subviews] indexOfObject:zView];
 
      [rView exchangeSubviewAtIndex:z withSubviewAtIndex:f];
 
      [[rView layer] addAnimation:animation forKey:@"animation"];

  }
 

(编辑:西安站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章