2015-09-26 77 views
2

以下是我使用CocoaPods添加Parse但仍然收到未解決的錯誤的步驟。無法使用CocoaPods添加解析

新增莢文件:

# Uncomment this line to define a global platform for your project 
platform :ios, '8.0' 
pod 'Parse' 

target 'GroomCal' do 

end 

target 'GroomCalTests' do 

end 

target 'GroomCalUITests' do 

end 

之後,我做了pod install。解析和螺栓框架已經安裝(我可以在XCode中看到它們)。

然後我添加了-Bridging-Header.h並將它添加到#import <Parse/Parse.h>

​​

當我嘗試import ParseAppDelegate.swift文件,我仍然得到No such Module Parse錯誤消息。我在這裏錯過了什麼。

enter image description here

我沒有使用*.xcworkspace文件打開該項目了。

回答

3

要使用cocoapods,需要將標誌 use_frameworks!添加到pod文件,因爲swift不允許添加靜態庫。

消息來源Cocoapods blog

+0

難道我在哪裏添加它在podfile?在'platform:ios'之後,'8.0'行可以嗎? – user1406716

+0

這是最常見的地方。 –

+1

萬歲!謝謝,希望'Parse'在他們的文檔中補充說(他們的大部分文檔都非常棒),謝謝你。 – user1406716

相關問題