xcode - 模块 bolt 的伞头不包括头 'BFAppLinkResolving.h'

标签 xcode swift parse-platform xcode6 bolts-framework

我正在使用 Parse 1.7.1(最新版本)Swift 运行一个 xcode 6.3 项目。我在构建时遇到了这个问题。我的自动完成和打字速度非常慢,我认为这可能是相关的。我已经测试了项目,只有当 Bolts 模块在项目中时才会发生(这是 Parse 所必需的)。

最佳答案

@franciscodlp - 我们还需要添加另一个头文件 (BFWebViewAppLinkResolver.h) - 我必须明确其中的 2 个。下面是 module.modulemap 的样子。

framework module Bolts {
  umbrella header "Bolts.h"

  export *
  module * { export * }

  explicit module BFAppLinkResolving {
    header "BFAppLinkResolving.h"
    link "BFAppLinkResolving"
    export *
  }
  explicit module BFWebViewAppLinkResolver {
      header "BFWebViewAppLinkResolver.h"
      link "BFAWebViewAppLinkResolver"
      export *
  }
}

关于xcode - 模块 bolt 的伞头不包括头 'BFAppLinkResolving.h',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29657487/

相关文章:

html - 是否有一个简单的解决方案可以快速解析 html 以将各个元素放入它们自己的变量中?

ios - 在设备关闭时处理应用程序

swift - Realm 中的嵌套对象

iOS 快速获取用户家乡最新FBSDK

android - 解析 onPushOpen 从未调用过

swift - 将最后一个 tableView 单元格设置为 Swift 中可变单元格中的常量单元格

ios - 如何在xib UI中查看Xcode中自定义 View 的代码中实现了什么?

swift - 如何使用可变数据源在 TableView 中按字母顺序制作节标题

ios - 在iOS上解析云代码

ios - 如何从终端/shell 完全降级 xcode?