(Xcode IOS) - I'm trying to make a method which prefetches all the images and loads them into a tableView before scrolling (using SDWebImage). Anyways:
I have an array of messages and each "message" is composed of a few different keys, PFFile, dateCreated, sender, etc...
What I need to do is take this array of @[ [PFFile], [dateCreated], [other info] ] -> @[ [PFFile] ]
In other words, I need to make an array of just the PFFiles from the entire array. I was thinking of something like this (pseudocode)
self.urls = [self.messages objectsWithKey:@[PFFiles]];