【发布时间】:2015-07-13 09:16:41
【问题描述】:
我想在我的 swift 框架中包含 GooglePlus 框架,但由于我无法包含桥接头,所以我对如何在我的框架目标中包含这个框架有点无能为力
【问题讨论】:
标签: objective-c swift frameworks google-plus target
我想在我的 swift 框架中包含 GooglePlus 框架,但由于我无法包含桥接头,所以我对如何在我的框架目标中包含这个框架有点无能为力
【问题讨论】:
标签: objective-c swift frameworks google-plus target
看来 module.map 是我目前发现的唯一可行的解决方案。
module GooglePlus [system] {
header "src/Google/headers/GooglePlus.h"
export *
}
module GoogleOpenSource [system] {
header "src/Google/headers/GoogleOpenSource.h"
export *
}
【讨论】: