Display WCHAR Strings in Xcode Debugger

Posted by Nicholaz on Stack Overflow See other posts from Stack Overflow or by Nicholaz
Published on 2010-03-20T16:27:00Z Indexed on 2010/03/20 16:31 UTC
Read the original article Hit count: 354

Filed under:
|
|

I'd like to preview WCHAR strings in the variable display of the Xcode 3.2 debugger.

Bascially if I have

 WCHAR wtext[128];
 wcscpy(wtext, L"Hello World");

I'd like to see "Hello World" for wtext when tracing into the function.

© Stack Overflow or respective owner

Related posts about xcode

Related posts about wchar