Xcode memory addresses were in hex but now are in decimal. How do I change back to hex? -
using xcode 4.2. when viewing memory in memory browser, memory addresses in leftmost column (called "line numbers" in editor menu) showing decimal numbers. earlier today, in hex. prefer hex can't figure out how change format decimal hex.
the individual variables, shown in variables view, have addresses in hex. contents of memory shown in hex.
edit: screenshot: red rectangle around decimal addresses. have since found clicking anywhere in column red rect toggles between hex , decimal addresses.
thx cocoafu helping me figure out. .
not sure how trying first clue "line numbers" not viewing memory. created:
int *a = malloc(500); a[0] = 3;
right (control) clicked on "a" in locals variable display, selected
view memory of "*a"
click in red rect change between different address bases (decimal/hexadecimal)--thanks @onquest
Comments
Post a Comment