swift 混編 oc 斷點時資料只有變數名稱不顯示值

weixin_33785972發表於2018-06-04

控制檯 po

列印

warning: Swift error in module ***.

Debug info from this module will be unavailable in the debugger.

error: in auto-import:

failed to get module '***' from AST context:

error: failed to import bridging header

提示 bridging header 中 import 發生錯誤

修改 Bridging-Header.h 檔案

引用OC檔案時

// 系統 

 #import <Foundation/Foundation.h>

// 直接新增 - Objective-C 檔案

#import "EaseUI.h"

// Cocoapods 匯入的 - Objcetive-C

@import MJRefresh;

相關文章