我正在尝试将Swift文件添加到我的应用程序并获得“无法导入桥接标头”错误等。
Bridging-Header代码:
//
// Use this file to import your target's public headers that you would like to expose to Swift.
//
#import "Menu.h"
答案 0 :(得分:0)
在构建设置中,尝试将“嵌入内容包含Swift代码”设置为“是”。
此外,它看起来无法识别UIKit中的对象,因此请尝试在其中一个Swift文件上添加“import UIKit”。