Reputation: 620
In XCode 6 Debug Area:
Debug area | break point | Pause | step over | step into | step out |
In XCode 7 (Version 7.0 beta (7A120f)
):
Debug area | break point |
How i can get other debug option in XCode7 .
Upvotes: 3
Views: 389
Reputation: 1183
In my case the following Scheme setting lead to the same missing debugging buttons even though the app is running (device or simulator):
Upvotes: 2
Reputation: 535138
You need to debug! As soon as you are actually running some code, those buttons will appear.
Code not running:
Code running:
It's nice, because it gives you some extra visual indication of when your code is running.
Upvotes: 3