Tagged Questions
1
vote
0answers
83 views
iOS GDB Store output of examine register command to a variable
In iOS GDB I have this:
(gdb) x/s $r1
0x3154129c: "_receivedStatusBarData:actions:"
How do I store the string _receivedStatusBarData:actions: to a variable like $1 in GDB? Please advise thanks.
...