Hi,
How can I View a Raw Buffer in the Debugger? I’ve tried right clicking and
selecting View Raw Memory, but firstly this Changes the Source code display to
Show the Memory instead if using the Value Inspection pane, secondly, it
displays the addresses in decimal instead of hex and thirdly I don’t think its
displaying the correct data anyway.
I have this code:
void* myBufferPtr;
myBufferPtr = malloc(myTotalLength * sizeof(NSUInteger));
if (myBufferPtr == NULL)
return nil;
[self getIndexes:myBufferPtr];
And I just want to look at the data pointed to by myBufferPtr.
Cheers
Dave
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list ([email protected])
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/xcode-users/archive%40mail-archive.com
This email sent to [email protected]