-2

我使用 XCode7.3 做了一个简单的快速项目。一切正常,UI 和单元测试也正常运行。但是,当我想查看覆盖率数据时,我无法再运行单元测试

ld: framework not found Pods_MapView
clang: error: linker command failed with exit code 1 (use -v to see invocation)

你能给我一个线索吗?

P/S:我在https://github.com/rickyngk/map-view-demo托管我的项目

在此处输入图像描述

4

2 回答 2

0

尝试将您的目标添加到您的 Podfile:例如:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.1'
use_frameworks!
target 'MapView' do
    pod 'GoogleMaps'
end

target 'MapViewTests' do
    pod 'GoogleMaps'
end

target 'MapViewUITests' do
    pod 'GoogleMaps'
end
于 2016-04-07T18:19:08.680 回答
0

我找到了自己的答案:

  1. 删除 Pod 和 Podfile.lock
  2. 按照这个https://stackoverflow.com/a/28116102/1960061
  3. 完毕

在此处输入图像描述

于 2016-04-11T18:55:41.113 回答