Reputation: 843
I have created a static library to perform some mathematical operations libICodeMathUtils.a
and add this static library with a .h file MathFunctions.h
. But when I run my project then I am having this issue. You can see in this screen shot.
Upvotes: 1
Views: 623
Reputation: 556
I think your static library file is not compatible with simulator because simulator supports i386 so you have to create universal library (static fat library) check this Build fat static library (device + simulator) using Xcode and SDK 4+
Upvotes: 1