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 :
Thank you.
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 :
Thank you.
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.