Reputation: 33
I have an iOS fat static library (iphoneos & iphonesimulator), if I was to use this during an app submission would it fail on the grounds that the binary includes iphonesimulator code?
Upvotes: 2
Views: 248
Reputation: 326
I think there is no problem. When you link your app for device it simply embed the code for the architecture your are using. So your app compiled for device does not embed code for simulator.
Upvotes: 1