animatedWithDuration 的适用范围

时间:2022-04-24 21:08:14

      

        [UIView animateWithDuration:0.25 animations:^{
            bkView.image = [[UIImage imageNamed:@"cell_bg_high"] stretchableImageWithLeftCapWidth:1 topCapHeight:50];
        } completion:^(BOOL finished) {
           bkView.image = [[UIImage imageNamed:@"cell_bg"] stretchableImageWithLeftCapWidth:1 topCapHeight:50];
        }];

我本来想用这种方法实现点击一个imageView对象时点击的效果,但是在iOS7里点击时没有反应。后来想到这个方法是对view对象的方法,image不是它的属性。可能是这个原因。后来换了一种方法

[self performSelector:@selector(setHeaderView:) withObject:bkView afterDelay:0.35];这样就好了。


其中,

  • duration为动画持续的时间。
  • animations为动画效果的代码块。

下面是可以设置动画效果的属性:

  • frame
  • bounds
  • center
  • transform
  • alpha
  • backgroundColor
  • contentStretch