解决Xcode Umbrella Header for Module Bolts does not include header ‘文件名’

来源:互联网 发布:中等偏上收入国家 知乎 编辑:程序博客网 时间:2024/06/13 10:31


进入引入的Framework,需要在module.modulemap中,增加一个header文件,会看到如下格式:

framework module framework名 {

  umbrellaheader"framework名.h"


  export *

  module * {export * }

  

  explicitmodule 要加入的文件名 {

      header"要加入的文件名.h"

      link"要加入的文件名"

      export *

  }

  

}

  * explicitmodule是我们要加入的部分

1 0
原创粉丝点击