Is there a way to automatically log the method calls in iOS projects in the console? something like:
[MainListTableViewController viewDidLoad]
[MainListTableViewController actionA]
[MainListTableViewController actionB]
I don't want to log system calls, and I don't want to manually put the NSlog in the code.
I have seen this question to enable a symbolic break point and this blog
But couldn't figure out a proper solution.
Thanks