0

I was look over new apps on appstore.I saw an app and I like asynchronously download object in this app that Do you know library for do this ? How can I animate loading object like this and asynchronously download ?

image : enter image description here

Thank you.

Erhan Demirci
  • 4,173
  • 4
  • 36
  • 44
  • There is already a `sendAsynchronousRequest:queue:completionHandler` method in NSURLConnection class. Can you please specify why it is not useful for your scenario and why do you think a third party lib is required? – Ayan Sengupta Nov 20 '13 at 19:38
  • @AyanSengupta No ı saw an app on appstore and ı like this loading tool . I wonder how can I do like this in my apps? – Erhan Demirci Nov 20 '13 at 19:53

1 Answers1

2

Here's one: KAProgressLabel

I'm using it in an app. It's pretty easy to configure/customize colors and sizes to let ik look like the controls from your screenshot. It also has a little demo app (screenshot)

To track download progress I would suggest adding AFNetworking to your project. Use AFHTTPRequestOperation to download your file and set a progressBlock. In the progress block, use the passed parameter to update the progress in the UI.

Leijonien
  • 1,415
  • 14
  • 16