I built an iOS Framework. After I added the framework to my project and run on my device, it worked fine. But when I try to run it on the Simulator, I got some error.
ld: warning: ignoring file MyFramework.framework/Framework, missing required architecture x86_64 in file MyFramework.framework/MyFramework (2 slices)
Also got this one:
Undefined symbols for architecture x86_64:
With a list of strings/methods and such that were referenced from.
How could I fix that?
Also, I want my Framework
to run on all devices/simulators since iOS7+ (Production), I've read this post here that tells me to use lipo
, but I understand that I have to create an Aggregate
target. I just don't have this in my Other
section of XCode 6.2.
How can I do this?