展示动态图片(播放一组图片)
展示动态图片(播放一组图片)
创建做动画的图片,存储到数组中
NSMutableArray * animationImages = [NSMutableArray array];
for (int i = 0 ; i < 7 ; i ++) {
UIImage * p_w_picpath2 = [UIImage p_w_picpathWithContentsOfFile:[[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"huoju_%d",i+1] ofType:@"tiff"]];
[animationImages addObject:p_w_picpath2];
}
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];
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。