无法使用 CocoaPods 添加 Parse
Unable to add Parse using CocoaPods
以下是我使用 CocoaPods
添加 Parse
的步骤,但仍然出现未解决的错误。
已添加 Pods 文件:
# 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
。安装了 Parse 和 Bolts 框架(我可以在 XCode 中看到它们)。
然后我添加了-Bridging-Header.h并添加了#import <Parse/Parse.h>
。
当我尝试在 AppDelegate.swift
文件中 import Parse
时,我仍然收到 No such Module Parse
错误消息。我在这里错过了什么。
我也确实使用 *.xcworkspace
文件打开了项目。
要将 cocoapods 与 swift 一起使用,您需要添加标志
use_frameworks!
到 podfile 因为 swift 不允许添加静态库。
以下是我使用 CocoaPods
添加 Parse
的步骤,但仍然出现未解决的错误。
已添加 Pods 文件:
# 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
。安装了 Parse 和 Bolts 框架(我可以在 XCode 中看到它们)。
然后我添加了-Bridging-Header.h并添加了#import <Parse/Parse.h>
。
当我尝试在 AppDelegate.swift
文件中 import Parse
时,我仍然收到 No such Module Parse
错误消息。我在这里错过了什么。
我也确实使用 *.xcworkspace
文件打开了项目。
要将 cocoapods 与 swift 一起使用,您需要添加标志
use_frameworks!
到 podfile 因为 swift 不允许添加静态库。