Reputation: 31
I have tried to debug something in my application.I run the app by setting the breakpoint, but the debugger showed me the variables without any content.
Here is an image of what I am talking about, I don't understand why the blue arrow does not appear in the left for each of the variables:
I have also opened another project and when i debugged that one, it worked. Is it related to the settings in xcode?
Upvotes: 1
Views: 1076
Reputation: 20804
This is a problem related to use of Objective-C code in swift projects
Check your Bridging-Header.h
and remove all unnecessary headers files from there, check if you are using cocoa-pods you need import all your pods with the import
sentence, never include the header of that pod in your Bridging-Header.h
I hope this helps you, I just resolve this problem with this method
Upvotes: 2
Reputation: 131418
Make sure you are running a debug build, not a release build. Release builds use code optimizations that get rid of temporary variables, map variables to registers, interleave the code from multiple lines together so you can't cleanly step through line by line, etc.
Upvotes: 0