以下是我添加Parse
使用CocoaPods
但仍然出现未解决错误的步骤。
添加了 Pod 文件:
# 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>
到它。
当我尝试import Parse
输入AppDelegate.swift
文件时,我仍然收到No such Module Parse
错误消息。我在这里想念什么。
我也确实使用该*.xcworkspace
文件打开了项目。