Reputation: 5840
When developing cocoa touch framework, how can i use code from third party framework by referencing it other then including it in the "link binary with libraries" option?
I dont want to link to binary in order to prevent symbol conflicts between hosting project and the framework (project which will use the framework)
Additionally i will need the framework code to use the hosting project reference to the third party framework, how can it be done?
Or should i take different approach for example static framework (i am not familiar with the small differences of the two)
Upvotes: 7
Views: 2242
Reputation: 4654
-weak_framework <framework_name>
Here is a docs section for that. Docs
More specifically this part.
Upvotes: 4