I have two projects:
- A local cocoapod
- An app that uses the local cocoapod
The podfile of the second project (app), has the following podfile:
pod 'MyCustomPod', :path => 'path_to_my_cocoapod_project...'
When i run the app, all works fine, including when i change things on the cocoapod project (like print something). What i have to do is use breakpoint to debug the cocoapod project when running the app project. Is that possible?
I'm new on locally pod projects and didn't anything like that.