我一直在使用googles map SDK,直到我在podfile中添加了另一个依赖项之前我还没有遇到任何问题。我在Xcode中发现了这个错误,"模块'谷歌地图'找不到"我在哪里' @import GoogleMaps'。如果我取出新的pod,错误就会消失,一切正常。我刚刚开始使用cocoaPods,我的podfile中是否缺少某些东西?
platform :ios, '6.1'
pod 'SDWebImage', '~>3.7'
source 'https://github.com/CocoaPods/Specs.git'
pod 'GoogleMaps'
答案 0 :(得分:0)
你只需要添加
target 'Your Project' do
pod 'SDWebImage', '~>3.8'
pod 'GoogleMaps'
target 'Your ProjectTests' do
# Pods for testing
end
该项目现在运行良好..