1

Skype アプリケーションと同じようにロゴをアニメーション化する必要があるアプリケーションを構築しています。アプリケーションの起動中にスカイプのロゴを表示させる方法がまだわかりません

4

2 に答える 2

8

あなたの質問に対する私の理解では、フレーム画像(正確にはgif画像のフレーム)を使用してみることができますUIImageView

 NSArray * imageArray  = [[NSArray alloc] initWithObjects:[UIImage imageNamed:@"1.png"], [UIImage imageNamed:@"2.png"], nil]; //this will be the frames of animation images in sequence.
 ringImage = [[UIImageView alloc]initWithFrame:CGRectMake(100,200,600,600)];
 ringImage.animationImages = imageArray;
 ringImage.animationDuration = 1.5;//this the animating speed which you can modify
 ringImage.contentMode = UIViewContentModeScaleAspectFill;
 [ringImage startAnimating];//this method actually does the work of animating your frames.

アニメーションを停止するには、単に使用します[ringImage stopAnimating];

これがあなたの質問に答えるかどうか私に知らせてください:)

于 2012-12-18T10:58:08.050 に答える
1

ねえ、MCSpriteLayer を使用してこの例を見つけたところです...このリンク
をたどる ことができます... また、ここにダウンロード可能なリンクがあります

これで私の目的は解決しました

于 2012-12-19T06:09:10.713 に答える