Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing iPhone application which contains the facebook connect as part of it. I am using third party API FBGraph to retrieve the Facebook friends list.

Currently my problem is that, when there is huge number of friends in list, it takes much time to load those. Its loading again and again when I navigating through the pages and come again.

In order to avoid this, i am trying to use caching concept. But I am currently stuck with this. I dont have clue on how the Facebook friends list can be cached.

share|improve this question

2 Answers

There are numerous ways to cache the data in IOS.

  • You can store the response in a file and use that file whenever you require.
  • You can store it sqlite db using core data / standalone

and many more.

share|improve this answer

Just load user friends at app start and then use it all the time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.