The correct way to debug your own framework project from the main application project in Xcode 8?

I read about two possibilities for this:

  • To create a framework as a debug, add it to the main application project and run the main project also as debug. Breakpoints should allow you to validate the wireframe code by entering it.
  • To add some kind of wireframe project to the main application project

I tried the first one and it does not work for me. When I try to enter the framework code, I get Couldn't Generate Swift Representation. If this option should work in Xcode 8and Xcode 8.1, what settings should I check?

If the "best / only" option is now the second, how to install it correctly?

+4
source share

Source: https://habr.com/ru/post/1660280/


All Articles