Zaporozhchenko Oleksandr
Zaporozhchenko Oleksandr

Reputation: 4958

How to use AFNetworking 2.0+ with old AFNetworking?

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

Answers (1)

Keith Smiley
Keith Smiley

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

Related Questions