Reputation: 4958
In my project I have RestKit
and IDMPhotoBrowser
(using Cocoapods), so there is two versions AFNetworking
conflict among themselves. Do you have any idea how to use them both in same project?
Upvotes: 1
Views: 87
Reputation: 63994
There is no way to use 2 libraries with the same classes in the same project. This is what leads to duplicate symbol errors. On the topic of RestKit + AFNetworking this has been brought up a few times. There's another StackOverflow question, there's tons of issues but it sounds like they want to remove AFNetworking as a dependency entirely (from here).
Upvotes: 1