Home > Blockchain >  AppCode, no iOS simulator showing up
AppCode, no iOS simulator showing up

Time:10-20

I've downloaded AppCode for iOS development. For my personal project I've a bunch of simulator to chose from. But for a work project there is no simulator but only "Add Configuration" (image attached below) Add Configuration from AppCode image

I've already tried a bunch of stuff like the ones mentioned here enter image description here

CodePudding user response:

AppCode configurations are different from Xcode schemes. You'll need to add a configuration, selecting a target to run. (If you select an app target, "Run" will run your app. If you select a test target, "Run" will run your tests.)

Once you have a configuration with an iOS target, you'll be able to select one of the simulators.

  • Related