摘要: 最普通动画: //开始动画[UIView beginAnimations:nil context:nil]; //设定动画持续时间[UIView setAnimationDuration:2];//动画的内容frame.origin.x += 150;[img setFrame:frame];//动画结束[UIView commitAnimations]; 连续动画:一个接一个地显示一系列的图像NSArray *myImages = [NSArray arrayWithObjects: [UIImage imageNamed:@"myImage1.png"], [UIIma 阅读全文
posted @ 2012-06-08 15:07 chivas 阅读(88516) 评论(0) 推荐(0) 编辑