进入引入的Framework,需要在module.modulemap中,增加一个header文件,会看到如下格式:
framework module framework名 {
umbrellaheader "framework名.h"
export *
module * {export * }
explicitmodule 要加入的文件名 {
header"要加入的文件名.h"
link"要加入的文件名"
export *
}
}
* explicitmodule是我们要加入的部分