0

My Xcode project builds and runs on a device but it does not build against the simulator. I am using a custom Framework in my project. This post seems to indicate that when you build a Framework to be included in another project you can only build it for the simulator or a device, but not both. Is this the case?

I am using Xcode 6.3.1

Community
  • 1
  • 1
mattnedrich
  • 7,577
  • 9
  • 39
  • 45

1 Answers1

1

You're correct that you can only build for one platform at a time, but the answer in your link explains how to use a script to build a binary that contains the framework for both platforms.

chedabob
  • 5,835
  • 2
  • 24
  • 44