Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为我的新 Swift 项目手动创建一个 Obj-C 桥接头文件,以便与 AudioKit 一起使用。我被困住了。一切似乎都是正确的(我什至检查了文件路径末尾的空格是否是问题而不是,我清除了项目)。作为证明,我附上一张截图:
有什么问题?
桥接头名称的格式应为
<target_name>-Bridging-Header.h
因此,如果您的目标名称是 AudioMeter。那么桥接头的名称应该是
AudioMeter-Bridging-Header.h
还要确保在 Xcode Build Settings中的Objective-C Bridging Header选项下指定了桥接头的路径。