AppCode 2021.2 Help

Run applications

AppCode allows you to run your iOS and tvOS applications on simulated devices as well as on real ones. Applications for macOS run on your current Mac where AppCode is installed.

Select a run/debug configuration

In AppCode, you run applications using run/debug configurations which are the analogues of the Xcode schemes and are synchronized with them.

Every project created in AppCode contains a default run/debug configuration that has the same name as your application. You can also create new run/debug configurations for different targets.

If the Navigation bar is visible (View | Appearance | Navigation Bar), you can access all available run/debug configurations from the selector on the toolbar.

Run Menu

Scroll to the bottom of the list to find them:

Run/debug configurations

Select a device

You can see the list of all available simulated and real devices in the run/debug configuration selector:

Select a device

AppCode displays a set of devices relevant to the selected run/debug configuration. So, if you selected a run/debug configuration for the tvOS target, you'll see just Apple TV devices in the list. If you selected a run/debug configuration for the macOS target, only your Mac will be available and preselected:

Running a macOS application

The list of available devices also depends on the lowest operating system version specified in the Xcode project settings. For example, if you have iOS 12.0 selected in Xcode, you'll have a list of devices only for iOS 12.0 and later.

Run your application

  1. Select a run/debug configuration for your application and a device to run it on.

  2. Click the Run button on the toolbar or press ⇧ F10.

While the project is being compiled, the compilation output appears in the Messages tool window:

Messages tool window

Once the compilation has successfully finished, the Run tool window opens, and the application launches on the selected device:

iPhone 11 Simulator

Rerun an application

  • Click the Rerun button on the toolbar.

  • Press ⌃ F5.

  • In the Run tool window, go to your application's tab and click the Rerun button.

Stop an application

  • Click the Stop button on the toolbar.

  • Press ⌃ F2.

  • In the Run tool window, go to your application's tab and click the Stop button.

Run an application extension

  1. Select an Application Extension configuration from the run/debug configuration selector on the toolbar.

  2. Click the Run button on the toolbar or press ⇧ F10.

  3. In the popup that opens, select a host application of your extension:

    Choose Host Application

Review the application output

You can review any output from your running applications in the console of the Run tool window. The output from each application is displayed in its own tab named after the corresponding run/debug configuration.

If you rerun an application, the new output overwrites the contents of the tab. To preserve the output of an application, even if you rerun it, pin the output tab.

Pause and resume the application output

  • To pause the application output, right-click inside the Run tool window and select the Pause Output checkbox in the context menu.

  • To resume the application output, deselect the Pause Output checkbox in the context menu.

Show running processes

You can view the list of all active run or debug sessions and navigate between them.

  • From the main menu, select Run | Show Running List. In the top-right corner of the editor, AppCode shows a list with all active applications.

    A list of running applications
Last modified: 30 November 2021