打断点运行项目并停于断点处,在控制台中敲入以下其中一条
po 变量名
or
print 变量名
会出现问题
warning: Swift error in module 项目名.
Swift error in module XXXDebug info from this module will be unavailable in the debugger
error: in auto-import:
failed to get module '项目名' from AST context:
可以看出提示我们在项目的桥头文件中第三方库xxx的导入方式有误
项目中在xxx桥头文件中的导入方式如下
如果你是通过Cocoapods来使用OC第三方的库,你需要将导入方式改为这种方式:
@import xxx;
以这种方式逐个修改OC第三方的导入方式,就可以解决控件台无法获取变量值的问题了。
如果是通过Cocoapods来使用Swift第三方库,直接在需要使用的地方导入即可
import Swift第三库的名称