Search code examples
iphoneobjective-cios5

Animate Logo just like Skype iPad App


I am building a application I need to animate logo just like skype application. I am still not sure how to get the affect skype logo appear while starting the application


Solution

  • As far as my understanding on your question, you can try using frame images (frames of gif images to be precise )on 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.
    

    To STOP the animation, just use [ringImage stopAnimating];

    Do let me know if this answers your question:)