私はこれに続いてGIFイメージを表示するpostを表示します。GIFイメージが表示されません
私が試してみました:
#import "ViewController.h"
@interface ViewController()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
UIImageView* animatedImageView = [[UIImageView alloc] initWithFrame:self.view.bounds];
animatedImageView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"splash.gif"], nil];
animatedImageView.animationDuration = 6.0f;
animatedImageView.animationRepeatCount = 10;
[animatedImageView startAnimating];
[self.view addSubview: animatedImageView];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
私は私のプロジェクトにGIF画像を追加しました。しかし、GIFイメージは表示されません。
はこの一回http://stackoverflow.com/questions/4386675/add-animated-gif-image-in-iphone-uiimageview –
@ Anbu.Karthik、私は上記の言及と同じリンクを参照してください。 – Khuong
ああ、ごめんなさい、あなたが単一のgifの使用をしたい場合UIWebviewは最高のオプションです –