I want to put breakpoint for all the functions in my app. From this stackoverflow(How to automatically set breakpoints on all methods in XCode?) question i got this -
breakpoint set -r . -s [PRODUCT_NAME]
And its working also. But it puts breakpoint in files coming from cocoapod, which i dont want. I only want to put breakpoint in my code only. As there are many pod files and it gets lost in those file and then its difficult to understand the flow.I want to put breakpoint in particular group of files.
How can we do this?