Kri*_*dra 14
动画GIF不会在iphone中动画.你应该将UIImageView作为子视图添加到UIButton,从GIF中提取所有图像并使用UIImageView动画制作动画
UIImageView* animatedImageView = [[UIImageView alloc] initWithFrame:self.view.bounds];
animatedImageView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"image1.gif"],
[UIImage imageNamed:@"image2.gif"],
[UIImage imageNamed:@"image3.gif"],
[UIImage imageNamed:@"image4.gif"], nil];
animatedImageView.animationDuration = 1.0f;
animatedImageView.animationRepeatCount = 0;
[animatedImageView startAnimating];
[yourButton addSubview: animatedImageView];
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
6444 次 |
最近记录: |