Problems mousing over variable names in iPhone debugger

来源:互联网 发布:手持数据终端拆机 编辑:程序博客网 时间:2024/06/05 22:45

For future reference, there are several major causes:

  • Target-level optimization settings: there should be no optimization
  • Target-level strip symbols: symbols should not be stripped
  • Target-level level of debugging symbols: default or all symbols should be used
  • Per-file compiler flags (get-info on file, choose Debug tab): Make sure there are no optimization per-file settings as there is no way to specify in what configuration (debug or release) they should be used, so they're always used.

I go into more detail here.