zoukankan      html  css  js  c++  java
  • 判断当前的动画已经完成,以便进行后记的动作

    参考代码:

    [UIView beginAnimations:@"animationID" context:nil];

    [UIView setAnimationDuration:0.3];

    [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];

    [UIView setAnimationRepeatAutoreverses:NO];

    m_image.frame = CGRectMake(0, 0, 1024, 768);

    [UIView setAnimationDelegate:self];//设置动画的委托

    [UIView commitAnimations];//开始动画


    动画的委托并不多。


    //动画结束后调用的函数

    - (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag

    {

      for(UIView *m_view in [self.view subviews])

      {

          if ([m_view isKindOfClass:[UIImageView class]])

          {

            [m_view removeFromSuperview];

         }

      }

    }

    THE END !

  • 相关阅读:
    类和对象
    关联查询
    重点函数
    三大范式
    主外键
    软件开发的项目周期
    什么是事务
    索引
    视图
    数据库对象
  • 原文地址:https://www.cnblogs.com/xingchen/p/2173436.html
Copyright © 2011-2022 走看看