-3

Adobe Flash で gif アニメーションを作成しましたが、Xcode にインポートしてアプリに入れたいと思います。383 個の gif 画像 (フレーム) があり、滑らかなアニメーションを作成するために次のコードを作成しました。

#import "ViewController.h"
#define IMAGE_COUNT       383




@interface ViewController ()

@end

@implementation ViewController




- (void)viewDidLoad
{

            [super viewDidLoad];

    //////////////////


    // Build array of images, cycling through image names
    for (int i = 0; i < IMAGE_COUNT; i++)
     imageView.animationImages = [[NSArray alloc]initWithObjects:[UIImage imageNamed:
                               [NSString stringWithFormat:@"picollage00%d.gif", i]],nil];


    imageView.animationRepeatCount = 5;
    [imageView startAnimating];


    // Do any additional setup after loading the view, typically from a nib.
}

画像はこのようなもので、画像は picollage0383.gif までカウントされています。

ここに画像の説明を入力

4

1 に答える 1