Я следую за этим post, чтобы показать изображение GIF.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
oh ok извините, если вы хотите сыграть в одиночный gif, используйте UIWebview - лучший вариант –