简体   繁体   中英

Unable to install Parse package via Cocoapods. Missing library

Senario:
I'm studying parse.com inter-table relationship via code.

I've set up a cocoapod dependency and am working from the .workspace.
This is the podfile content:

platform :ios
pod 'Parse', '~> 1.7.2.1'

However I received the following compiler error:
在此处输入图片说明

Apparently I'm missing a Library.
What am I doing wrong?

Try rerunning pod update from the project folder via the command line, then cleaning your build.

Also, you don't need to be quite to specific with your podfile. Try this instead:

platform :ios
pod 'Parse', '~> 1.7'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM