实现像iPad中的skype动画logo
问题描述:
我在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];