I have to use version 1.x and 3.0 of AFNetworking in same project. i went through with the questions on SO.
Using two versions of afnetworking
But the problem is I don't understand the answer.
I have to use version 1.x and 3.0 of AFNetworking in same project. i went through with the questions on SO.
Using two versions of afnetworking
But the problem is I don't understand the answer.
This is not possible: if you want to include multiple version of the same framework in the same project you end to cause duplicate symbol errors. To make an example of AFN, RestKit depends on AFN 1.x while another library you want to use requires 3.x. You won't be able to use both of them in the same class.
To more information take a look to the 3.x requirements.
And you could look here to know (AFNetworking-3.0-Migration-Guide) the differences between versions.
I think you should rename one version of them. Rename AFNetwork to BFNetwork or do something like that.