标签: swift xcode6
我正在创建一个Swift框架,我需要使用SQLite,当我创建一个桥接文件时,编译器会给我以下错误:using bridging headers with framework targets is unsupported,但是我找到了这个项目(https://github.com/stephencelis/SQLite.swift)包括桥接文件。他是怎么做到的?
using bridging headers with framework targets is unsupported
答案 0 :(得分:1)
您不能在框架中使用桥接文件。解决方案是使用映射文件。请参阅此回答https://stackoverflow.com/a/25422889/4365754