gpt4 book ai didi

ios - 仅针对 Xcode 单元测试未找到 COCOAPOD 文件

转载 作者:行者123 更新时间:2023-12-01 18:44:22 24 4
gpt4 key购买 nike

我使用 POD 添加了 PLCrashReporter

use_frameworks! 
pod 'PLCrashReporter'

我在 Briding Header 中导入了以下文件以在我的 swift 项目中使用
#import <CrashReporter/CrashReporter.h>
#import <CrashReporter/PLCrashReport.h>

如果我运行该项目,那么我不会遇到任何问题并且它可以按预期工作

如果我进行 xcode 单元测试,我会收到以下错误
(Xcode->产品->测试)

enter image description here

最佳答案

分别为 Target 和 TargetTests 添加 pod

中进行以下更改 pod 文件

target ‘Target’ do
platform :ios, ‘8.0’
use_frameworks!
pod 'PLCrashReporter'
end

target 'TargetTests' do
platform :ios, ‘8.0’
use_frameworks!
pod 'PLCrashReporter'
end

转至 build设置 目标测试
并设置“ 的值其他链接器标志 ” 作为 $(继承)

做一个 POD 安装 然后做 清理构建文件夹 并运行

关于ios - 仅针对 Xcode 单元测试未找到 COCOAPOD 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37705301/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com