Can';t调试我的iOS项目,因为更新到cocoa pods以使用_框架!斯威夫特

Can';t调试我的iOS项目,因为更新到cocoa pods以使用_框架!斯威夫特,ios,xcode,build,cocoapods,lldb,Ios,Xcode,Build,Cocoapods,Lldb,cocoapods0.38.0之后,我更新了我的项目,使之成为use\u框架以便我可以使用Swift模块 现在,每当我尝试通过lldb进行调试时,都会出现以下错误: error: Error in auto-import: failed to get module 'my-app-name' from AST context: <module-includes>:1:9: note: in file included from <module-includes>:1: #

cocoapods0.38.0之后,我更新了我的项目,使之成为
use\u框架以便我可以使用Swift模块

现在,每当我尝试通过lldb进行调试时,都会出现以下错误:

error: Error in auto-import:
failed to get module 'my-app-name' from AST context:
<module-includes>:1:9: note: in file included from <module-includes>:1:
#import "/Path/To/Project/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-umbrella.h"
        ^
/Path/To/Project/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-umbrella.h:6:9: note: in file included from /Path/To/Project/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-umbrella.h:6:
#import "FBSDKAppLinkResolver.h"
        ^
/Path/To/Project/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkResolver.h:26:10: error: include of non-modular header inside framework module 'FBSDKCoreKit.FBSDKAppLinkResolver'
# import <Bolts/BFAppLinkResolving.h>
         ^
could not build Objective-C module 'FBSDKCoreKit'<module-includes>:1:9: note: in file included from <module-includes>:1:
#import "/Path/To/Project/Pods/Target Support Files/FBSDKLoginKit/FBSDKLoginKit-umbrella.h"
        ^
/Path/To/Project/Pods/Target Support Files/FBSDKLoginKit/FBSDKLoginKit-umbrella.h:3:9: note: in file included from /Path/To/Project/Pods/Target Support Files/FBSDKLoginKit/FBSDKLoginKit-umbrella.h:3:
#import "FBSDKLoginButton.h"
        ^
A fatal parse error has occurred.  LLDB may become unstable; please restart your debug session as soon as possible.
错误:自动导入时出错:
无法从AST上下文获取模块“我的应用程序名称”:
:1:9:注意:在文件中包括:1:
#导入“/Path/To/Project/Pods/Target支持文件/FBSDKCoreKit/FBSDKCoreKit.h”
^
/Path/To/Project/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit umber.h:6:9:注意:在文件中包括/Path/To/Project/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit umber.h:6:
#导入“FBSDKAppLinkResolver.h”
^
/路径/To/Project/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/fbsdkcplinkresolver.h:26:10:错误:框架模块“FBSDKCoreKit.fbsdkpplinkresolver”中包含非模块头
#进口
^
无法生成Objective-C模块“FBSDKCoreKit”:1:9:注意:在包含的文件中:1:
#导入“/Path/To/Project/Pods/Target支持文件/FBSDKLoginKit/FBSDKLoginKit伞形图.h”
^
/Path/To/Project/Pods/Target-Support-Files/FBSDKLoginKit/FBSDKLoginKit-umber.h:3:9:注意:在/Path/To/Project/Pods/Target-Support-Files/FBSDKLoginKit/FBSDKLoginKit-umber包含的文件中。h:3:
#导入“FBSDKLoginButton.h”
^
发生了致命的分析错误。LLDB可能变得不稳定;请尽快重新启动调试会话。

我做了一些挖掘,发现如果您将
Pods
项目中的
FBSDKCoreKit
目标的
允许非模块化包含在框架模块中
设置为yes,则修复了LLDB错误。

我有一个类似的问题,我发布了一个问题:即使我将
Allow Non-modular include in Framework Modules
设置为yes,我仍然有同样的问题