Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 6 Playground using Parse framework?

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

I know there are similar posts to this (How to I import 3rd party frameworks into Xcode Playground?) but i could not make it work for my project.

Any help here is very very much appreciated... I am not a complete newbie but am not an expert So as many details (almost for dummies ;-)) as you can please...Many thanks.

like image 379
sijones Avatar asked Nov 11 '22 01:11

sijones


1 Answers

To get Parse working in playground you will need to create an Xcode project and include the Parse framework. Then within that project you can add a playground and import frameworks and code written in that project. Hope this helps.

If you are curious I did it for a framework I created and created a Playground inside the projects workspace. In that I import Dollar which is a custom framework but I guess you could import Parse and it should work https://github.com/ankurp/Dollar.swift

like image 162
Encore PTL Avatar answered Nov 15 '22 11:11

Encore PTL