I want to add images in array in sequence after downloading. I am appending images in array after downloading one by one but they are not in sequence. Can any one please tell me what is best way to do this.
var queue: NSOperationQueue = {
let _queue = NSOperationQueue()
_queue.maxConcurrentOperationCount = 4
return _queue
}()
var imageArrayNsData : [NSData] = []
let session = NSURLSession.sharedSession()
@IBAction func didClickOnStart(sender: AnyObject) {
queue.cancelAllOperations()
let completionOperation = NSBlockOperation() {
print("all done")
}
for (index, imageURL) in imageURLs.enumerate() {
let operation = ImageNetworkOperation(session: session, urlString: imageURL) { image, response, error in
let dtA : NSData = NSData(data: UIImageJPEGRepresentation(image!, 0.75)!)
self.imageArrayNsData.append(dtA)
print("JPEG download\(index)")
}
completionOperation.addDependency(operation)
queue.addOperation(operation)
}
NSOperationQueue.mainQueue().addOperation(completionOperation)
}
The resulting output:
JPEG download0
JPEG download2
JPEG download1
JPEG download3
all done
You should change your model such that it doesn't matter what order the images are downloaded. For example, you have your array of image URL strings:
So, your
NSData
should be stored in a dictionary (orNSCache
) keyed by that URL string:Then when you download the data, you can update this dictionary:
Then, when you need to retrieve this data later, you can use the imageURL, e.g.:
Or you could define it as a
[Int: NSData]
and use the number index as the key. But the idea is that you can use a dictionary, and then the order you receive the responses doesn't matter, but you still enjoy the performance benefit of doing concurrent requests.What I'd suggest would be something like:
And then access it like so:
Or
And access it like so:
Note,
ImageNetworkOperation
is just callingDataOperation
to get theNSData
, and then converting it to aUIImage
. If you really want the originalNSData
, I'd suggest bypassingImageNetworkOperation
and just callingDataOperation
directly, like shown above.I'm not sure but i think, You can not control the Download order.. means all the request are pipelined to server (no matter what the order you create the URL objects in). What you need to do is, you must maintain the mutable array or dictionary that contains the url to actual data mapping, then wait until all the urls have been completely downloaded. Then iterate in a known order.
try:
this is a very quick and rough fix, there well may be a better solution of course. The problem appears because operations in an operation queue are performed concurrently and are not guaranteed to finish in order they started. By adding dependency to a previous operation in the loop you make sure they are performed sequentially