2

I'd like to see what kinds of API/framework calls are being made by an arbitrary iOS app. Is there some sort of mechanism or tool that I can use to do this?

Muin
  • 1,251
  • 11
  • 8

1 Answers1

0

For clarification, the term you are looking for is hooking. It can be easily be done on a Windows system.

Excerpt from Wikipedia: ptrace is a system call found in several Unix and Unix-like operating systems.

Given the design of iOS running one app at a time, I don't believe you can do this. Plus your app will be running in a sandbox environment with each app having it's own virtual address space.

Black Frog
  • 11,595
  • 1
  • 35
  • 66