abcf
abcf

Reputation: 695

Is there a CocoaPods Library for Parse?

I downloaded an open source project via Cocoapods that I am modifying and I'm trying to add the Parse Framework but it seems I can not access the framework within the open source file located in the Pods Directory. I have included the Parse framework in my own project directory where I can access the Parse framework within files located in my project directory but there's an error when I try to access it within the open source file...so I was wondering if there was a Cocoapods version of Parse.

I typed in Parse in the Cocoapods Search Website but I can only find ParseUI.

Upvotes: 0

Views: 70

Answers (2)

IronMyke
IronMyke

Reputation: 1

Try

pod 'Parse-iOS-SDK', '~> 1.3'

in your Podfile

Upvotes: 0

EmilioPelaez
EmilioPelaez

Reputation: 19932

I don't know why you don't see it listed, but just do:

pod 'Parse'

Upvotes: 1

Related Questions