Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有安装了测试和 cocoapods 的默认项目模板(pod install)。Pods 适用于主要目标,但是当我尝试在测试中导入某些内容时,我得到类似
pod install
Time.m:11:9: 'NSDate-Utilities.h' file not found
这是否意味着我应该将 pods 目录添加到测试目标中的标头搜索路径?这可以通过 cocoapods CLI 以某种方式自动完成吗?
建议链接的那个问题直到昨天才得到错误的答案。
好的,有一个简单的解决方案,请参阅上面的答案以使其自动工作。Pods/Pods我必须在项目信息中为测试目标选择配置文件。
Pods/Pods
您要使用的内容link_with来自您的Podfile. 就像是:
link_with
Podfile
link_with 'MainTarget', 'MainTargetTests'
然后pod install再次运行。