How can i create a animated loading effect like the below image in iOS. Any one kindly give me an idea or point me any examples. Thanks in advance

enter image description here

link|improve this question

29% accept rate
Improve your accept rate... and I assume they use a custom animation or gif file added to a uiimageview. So it would look like this -initialization->splash screen (with picture)->same splash screen pic, but actual uiviewcontroller (with animated dots)->app – CodaFi Nov 13 '11 at 7:41
feedback

2 Answers

I would use 2 UIImageViews.

  1. An Image that includes these 6 small transparent circles (as holes) inside a blue box.
  2. An image with a bigger white circle that moves behind the first image left to right repeatedly.
link|improve this answer
feedback

You can create a set of animation images, add them into array and then add into UIImageView.

NSMutableArray *imgArr = [NSMutableArray arrayWithCapacity:n];
for (int i = 0; i<n; i++) {
UIImage *img = [UIImage imageNamed:[NSString stringWithFormat:(@"loadingImg%d.png",i)]];
[imgArr addObject:img];}
loadingImageView.images = imgArr;
loadingImageView.animationDuration = 1.0f;
loadingImageView.animationRepeatCount = 0;
[loadingImageView startAnimating];

loadingImageView - UIImageView, you can add it in XIB or in ViewDidLoad. n - number of images in animation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.