How to limit the background downloads of a PFFile - Parse Framework

152 Views Asked by At

Im using the Parse Framework for developing an app that loads images from the Parse Server, im using the Parse method:

PFFile *file = object[@"file"];
[file getDataInBackgroundWithBlock:^(NSData *data, NSError *error) {
            ...
}

but i want to limit the number of files getting in the background

Any idea how can i do that?

Thanks

2

There are 2 best solutions below

0
On

You could wrap your retrieval of the file from Parse.com in an NSOperation, and submit them to an NSOperationQueue. You should then set the maxConcurrentOperationCount on the queue to be the maximum concurrent file download operations, and you should have the concurrent download throttling that you're after.

0
On

You can put this function in a singleton Class, and create a global variable, a counter, and each time your user pass on this function you increase the counter.

Besides, before the function execution check the counter number, and do it or not.

For the case the user close the app, you can create a plist for storage this information.

Hope it helps.