I am using Xcode 6.1, iOS 8 and have created several touch frameworks. The only way I can build the Touch Framework (= F ) is to include the frameworks in "Link Binary With Libraries", which makes it compile. Then, when I use my framework in AppName.app, I get warnings:
The Foo class is implemented both in AppName.app/Frameworks/F.framework/F and in AppName.app/AppName. One of the two will be used. Which one is undefined.
Q: I do not want dependencies to be included in the F framework, I just want to link them, so how to do this?
(I get similar errors and have a similar question as mentioned here when I try to make similar corrections)
(A similar question here , but no answer): - (
nikko source share