I have iOS application which use frameworks A and B. Each of which requires MyClaseName
class.
After running application I have following warnings in log:
objc[2472]: Class MyClaseName is implemented in both /Users/myusername/Library/Developer/Xcode/DerivedData/workspace-amvqjwzykbswydebvpvdfbylgsck/Build/Products/Debug-iphonesimulator/A.framework/A and /Users/myusername/Library/Developer/Xcode/DerivedData/workspace-amvqjwzykbswydebvpvdfbylgsck/Build/Products/Debug-iphonesimulator/B.framework/B. One of the two will be used. Which one is undefined.
I have checked following similar SO question, but unfortunately this is not my case.
So, how can I fix this issue?