I have a set of playgrounds that I'm using with a with a private (Swift) framework that is hosted, alongside my app targets, inside a workspace. The playground imports the private framework, and the editor is at least aware of the framework's code.
However, when I attempt to execute the playground, I get no output except the following error in the console:
Playground execution failed: error: Couldn't lookup symbols:
__TF.......
__TW.......
__TZ.......
The mangled-symbol lines are obvioiusly truncated to protect the innocent, but these are all symbols that are in the framework and are referenced in the playground.
I've verified that:
- The framework is in the same workspace as my playground
- It's being used by at least one app target (it's actually being used by two separate app targets).
- The framework is being imported in the playground (interestingly, when the playground first loads, there's a "Cannot find framework ..." tooltip error, but that goes away after a couple of seconds.
- The editor is aware of all symbols, and I can control-click through to any of them.
While it's been a while since I used the playground, it previously worked with XCode6. I'll appreciate any tips.