How to get function/symbol information from within a binary file in IOS

719 Views Asked by At

We have developed a IOS application and found that application binary file is using _malloc() function somewhere inside.

$otool -IV Reminders | grep _malloc
0x0000000100415b3a  1436 _malloc
0x0000000100415b40  1437 _malloc_size
$

We have not used malloc() function from inside our code. Not sure why this symbol is present within our binary. We would like to understand who is using this malloc() function within our application binary, is it used by some statically linked library or something else ?

0

There are 0 best solutions below