加入收藏 | 设为首页 | 会员中心 | 我要投稿 厦门网 (https://www.xiamenwang.cn/)- 数据采集、建站、AI开发硬件、专属主机、云硬盘!
当前位置: 首页 > 教程 > 正文

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

发布时间:2023-10-31 10:54:07 所属栏目:教程 来源:转载
导读:   下面代码段是关于ios View 淡入淡出效果的代码,希望能对各位也有好处。



  - (void)TheAnimation{



   animation.delegate = self;



   animation.timing
  下面代码段是关于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"];

  }
 

(编辑:厦门网)

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

    推荐文章