アプリに特定のアニメーションを挿入したいのですが、それはクラウド爆発のようでなければなりません... xcodeにブレークポイントを残すときを知っていますか?このように...どうやって作るのか教えていただけますか?ありがとう
質問する
1237 次
2 に答える
2
これは、次のコードで実現できます。
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.
これでうまくいくはずです..:)
于 2013-01-04T12:41:17.070 に答える
0
UIImageView
一連の画像を使用して、アニメーションを作成できます。
于 2013-01-04T11:59:11.477 に答える