展示动态图片(播放一组图片)
创建做动画的图片,存储到数组中
NSMutableArray * animationImages = [NSMutableArray array]; for (int i = 0 ; i < 7 ; i ++) { UIImage * p_w_picpath1 = [UIImage p_w_picpathWithContentsOfFile:[[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"huoju_%d",i+1] ofType:@"tiff"]]; [animationImages addObject:p_w_picpath1]; } p_w_picpathView.animationImages = animationImages;设置播发完一组动态图片的时间
p_w_picpathView.animationDuration = 1;设置重复的次数
p_w_picpathView.animationRepeatCount = 3; [self.view addSubview:p_w_picpathView]; [p_w_picpathView release];开始播放
[p_w_picpathView startAnimating];[p_w_picpathView stopAnimating];