Hello all,
I'm looking for a way to import more than 1 framework in a playground that's in a workspace. I googled around and managed to get it to import 1 pod in a project that has many pods, but haven't found a way which imports them all. I have my project and pods project in a workspace. Then I add a new playground. When I run the main app target, I can not import anything. When I build the pods framework for pods project target, I am able to import `Pods_MyProject` but I can not use any symbols within `Pods_MyProject` ie: `import Pods_MyProject` works but whenever I try to use a pod it gives an error. import Pods_MyProject.Alamofire` or `import Alamofire` doesn't work either. I tried symlinking the pods folder and pods framework into the sources folder of the playground but it didn't work either. Is there a way at all that is able to import all classes in a workspace into a playground, that will be used as a workspace scratchpad?
Thanks in advance!