I have an iOS App disassembly which has the following block:
There are 'greyed out' comments in the picture of great interest which we want to capture from IDAPython. Such as which selectors are used on imported Framework objects such as UIWindow
, CLHeading
etc. IDA python however only has calls to get Repeatable comments, regular comments and function comments. Any idea which idc/idapython function gets this 'greyed out' comments? I assume they are repeatable comments from somewhere. Thanks.
UPDATES
The grey out comments are repeatable comments so I tried following the labeled address (selRef_setLastHeading
on the third line) to the repeatable comment and arrived at this line:
However, when I did a RptCmt(here())
at that address, I was expecting @selector(setLastHeading:)
to be returned as the comment but it returned an empty string..