ios7 - How to view value of segue.identifier in debugger? -
I have a breakpoint at the bottom of the line if . This code is
ViewControllerOne Is in. The push is
ViewControllerTwo . Once the breakpoint hit, how can I see the value without using
segue.identifier using
NSLog ?
When I hover over the identifier, nothing is up. Hovering on
sec simply displays a
NSObject in the debugger.
- Create (void) ForSegue: (UIStoryboardSegue *) segue sender: (id) sender {if ([segue.identifier isqualToString: @ "submitButtonToSeque"]) {AAViewControllerTwo * destinationViewController = segue .destinationViewController; }} Using a NSLog I can see the value output in the debugger. But I would like to avoid the NSLog .
Set a breakpoint if statement
As you type in the console, Intelligence will help you complete automatically:
The command is PO & lt ; Object & gt; :
Comments
Post a Comment