I am trying to build a CoreData model similar to Twitter user when User can have many other users who follows him and many other users followed by him. I attached the model that I have tried to use but seems it is getting to complicating to retrieve followers. What is the best way to deal with this situation?
Asked
Active
Viewed 844 times
1 Answers
5
I think you need to create a second relationship (followedBy
) and make that the inverse.

Phillip Mills
- 30,888
- 4
- 42
- 57
-
So that following and followedBy point to each other as many-to-many relationships? – Kostia Kim Oct 03 '12 at 14:39