我在iPhone中開發應用,需要做成像skype應用了動畫logo,不知道應該從哪開始?請高手幫忙指點一下思路。
我估計你想實現的可以通過 UIImageView的框架圖片
NSArray * imageArray = [[NSArray alloc] initWithObjects:[UIImage imageNamed:@"1.png"], [UIImage imageNamed:@"2.png"], nil];
ringImage = [[UIImageView alloc]initWithFrame:CGRectMake(100,200,600,600)];
ringImage.animationImages = imageArray;
ringImage.animationDuration = 1.5;
ringImage.contentMode = UIViewContentModeScaleAspectFill;
[ringImage startAnimating];