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

 Enter the image details here

As you type in the console, Intelligence will help you complete automatically:

Enter image details here

The command is PO & lt ; Object & gt; :

enter image details here

Comments

Popular posts from this blog

Verilog Error: output or inout port "Q" must be connected to a structural net expression -

jasper reports - How to center align barcode using jasperreports and barcode4j -

c# - ASP.NET MVC - Attaching an entity of type 'MODELNAME' failed because another entity of the same type already has the same primary key value -