Conflict between static libraries used in Xcode project
问题 I am using RestKit, GData and Facebook API. All of them has a JSON files, many of them share the same name, enums etc. When i compile I get an error on duplicates. How can i prevent the conflicts? Thanks Shani 回答1: This is my best guess. It would be helpful to post the errors you get on compile. If you are using the -all_load linker flag, turn it off. If your libraries require that you use this option, try using -force_load option on the specific libraries that require it. As an absolute last