I had created my own framework project in Xcode and I want to use method from other framework (example : libA.framework) inside my framework project.
I got crash and show unrecognized error when I run and use method from libA.framework
, I tried to check method inside headerA.h
from libA.framework
but not founded, but it founded in headerA+Standalone.h
.
What is the difference between headerA.h
and headerA+Standalone.h
?
And How to call method inside headerA+Standalone.h
?