Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 5/6: View Debugging always grayed out?

Tags:

xcode

ios

xcode5

The "Debug / View Debugging" menu is always grayed out for me in Xcode 5 (and 6), even when the target is stopped at a breakpoint. How do I enable it?

Debug / View Debugging

like image 276
Binks Avatar asked Jun 04 '14 14:06

Binks


People also ask

How do I enable debug mode in Xcode?

When you run an application in Xcode, the debugger is automatically started and attached to the process of the application. Click the Run button in the top left or press Command + R. From the moment the application is up and running, we can start inspecting the process and, if necessary, debug it.

How do I see console in Xcode?

Go to Xcode → Preferences → Debugging → On Start → "Show Console".

What is debugging executable in Xcode?

The “Debug executable” checkbox specifies whether or not you want to run with the debugger enabled. Once running, you can use Debug > Attach to Process on a process that has been launched with debugging disabled if needed. It seems like all this does is start your app with the debugger attached.

How do I debug in Xcode Swift?

Customize what Xcode displays when running your app in the debugger by choosing Xcode > Preferences > Behaviors > Running. Use the buttons in the debug bar to control the execution of your app. Continue normal execution from the paused position until the app stops at the next breakpoint with the Continue button.


1 Answers

For me (Xcode 6 Beta and Beta two) the View Debugging options are only enabled in 32bit simulators (e.g. works when I use 'iPhone 5' but not when I am using 'iPhone 5s')

like image 65
Daniel Avatar answered Sep 21 '22 23:09

Daniel