在xcode 7中快速灵活安装时收到以下警告
找不到目录的选项
'-F / Applications / Xcode.app / Contents / Developer / Platforms / iPhoneSimulator.platform / Developer / SDKs / iPhoneSimulator9.0.sdk / Developer / Library / Frameworks'
找不到目录的选项
'-F / Applications / Xcode.app / Contents / Developer / Platforms / iPhoneSimulator.platform / Developer / SDKs / iPhoneSimulator9.0.sdk / Developer / Library / Frameworks'
上面有一个issue打开,但似乎已解决,所以我猜我在做其他错误。
也有这样的question,但是那里的答案建议删除框架搜索路径,我为它添加了一些用于google map的内容,并且在删除该条目时遇到了其他错误。
还有其他想法吗?
这是我的Podfile:
platform :ios , '8.0'
use_frameworks!
target 'OurLatitude' do
pod 'AlamofireObjectMapper', '~> 0.9'
pod 'DateTools'
pod 'GoogleMaps'
pod 'Google/CloudMessaging'
pod 'SDWebImage', '~>3.7'
pod 'SDWebImage/MapKit', '~>3.7'
end
target 'OurLatitudeTests' do
pod 'Quick', '~> 0.6.0'
pod 'Nimble', '2.0.0-rc.3'
pod 'AlamofireObjectMapper', '~> 0.9'
pod 'DateTools'
pod 'GoogleMaps'
pod 'Google/CloudMessaging'
pod 'SDWebImage', '~>3.7'
pod 'SDWebImage/MapKit', '~>3.7'
end
最佳答案
似乎该问题仅在最近才得到解决,尚未发布。我想我们只需要耐心:)
关于ios - 快速灵活安装时,如何解决“找不到选项目录”?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32706265/