加入收藏 | 设为首页 | 会员中心 | 我要投稿 焦作站长网 (https://www.0391zz.com/)- 数据可视化、人体识别、智能机器人、办公协同、物联安全!
当前位置: 首页 > 教程 > 正文

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

发布时间:2023-10-31 11:30:27 所属栏目:教程 来源:转载
导读:   下面代码段是关于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"];

  }
 

(编辑:焦作站长网)

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

    推荐文章