I am having a performance issue using the Facebook Graph API to pull a user's friends list. My issue is not in retrieving the list, but having to loop through the list once it is retrieved to get the user's picture.
The "me/friends" api call only returns the userId and userName. I then have to take each persons userID and make a call to get their picture. This slows down my UITableView of friends quite a bit.
Does anyone have a better solution to load all of the pictures?

