I\'ve seen several posts on google and stackoverflow related to this error, I\'ve read all of them but still fetching the problem , I will be glad for a solution. Here is th
Note to self: "READ THE ERROR!"
In my case it says this: duplicate symbol _OBJC_CLASS_$_SATCoreData in:
Translation: an Objective C Class called SATCoreData
is duplicated.
Then it gives the path to both occurrences of the symbol. Reading the path points to the two the class file ending in .o
. If you look at both classes you will find something fishy. In my case I had accidently given two classes the same name. One class I had inside the file of another class because I was testing something and was too lazy to make a separate class. Hope this helps someone.