Xcode 6 playground using the Parse framework?

I would like to use the Parse SDK / Framework my playground file, but I get an error if I import it. I can import iOS frameworks like UIKit

I know there are similar messages ( How to import third-party frameworks into Xcode Playground? ) But I couldn’t get it to work for my project.

Any help here is much appreciated ... I'm not a complete beginner, but I'm not an expert. As many details (almost for mannequins ;-)) as you may like ... Thank you very much.

+5
source share
1 answer

To get Parse to work on the playground, you will need to create an Xcode project and enable the Parse structure. Then, within the framework of this project, you can add a playing field and import the frameworks and code written in this project. Hope this helps.

If you are interested, I did this for the structure I created and created a playground within the project workspace. In this, I import Dollar, which is a custom structure, but I assume you can import Parse, and it should work https://github.com/ankurp/Dollar.swift

+1
source

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


All Articles