本文介绍了模拟器时没有这样的模块,但是在使用设备时可以找到它的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个项目,其中使用了一些Pod,其中一个是Meteor。

I got a project where I use some Pods, where one of them is Meteor.

我已经用此Podfile安装了cocoapods

I have installed with cocoapods with this podfile

platform :ios, '8.0'
use_frameworks!

pod 'OpenTok', '~> 2.6'
pod 'Meteor', '~> 0.1'

然后打开.xcworkspace而不是.xcodeproj
然后在我的项目中我在我的AppDelegate中导入Meteor。
当我选择模拟器并尝试运行/构建它时,会出现错误没有此类模块'Meteor'

And then open up the .xcworkspace instead of .xcodeprojThen in my project I import Meteor in my AppDelegate.When I choose a simulator and try to run/build it comes with the error "No such module 'Meteor'"

但是如果我带上iPad并将其连接并选择它作为目标,我可以运行/构建。

But then if I take my iPad and connect it and choose it as target, I can fine run/build.

我还无法找到解决方案。

I have not be able to find a solution for this yet.

推荐答案

按照以下说明加速构建后,我有相同的症状:

I had the same symptom after following these instructions to speed up my build:Prevent Xcode from building subprojects every time


  • 产品>方案>编辑方案…

  • 构建(在左列中)

  • 确保已选中查找隐式依赖项

这篇关于模拟器时没有这样的模块,但是在使用设备时可以找到它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 07:51