无法在 xcode 8 中构建模块 Cocoa
Could not build module Cocoa in xcode 8
我正在尝试基于 apple dev 文档和 this blog post.
编写一个简单的 QuickLook 插件
但作为儿子,我补充
#import <Cocoa/Cocoa.h>
在 *.c 文件的开头出现错误:Could not build module Cocoa
看起来像这样:
我也试过在项目中添加 thos libe 作为 deps,如下所示:
运气不好。
我已经尝试重新安装 xcode。我也读过那些:iOS : Could not build module <framework-name>,
Xcode 5 Couldn't build module Cocoa after installing Xcode 6 beta 2.
我有 xcode 8.2 和 OS 10.11。
Cocoa 框架应该 #import
而不是 #include
。但是,#import 需要 Objective-C 文件 (.m)。
我正在尝试基于 apple dev 文档和 this blog post.
编写一个简单的 QuickLook 插件但作为儿子,我补充
#import <Cocoa/Cocoa.h>
在 *.c 文件的开头出现错误:Could not build module Cocoa
看起来像这样:
我也试过在项目中添加 thos libe 作为 deps,如下所示:
我已经尝试重新安装 xcode。我也读过那些:iOS : Could not build module <framework-name>, Xcode 5 Couldn't build module Cocoa after installing Xcode 6 beta 2.
我有 xcode 8.2 和 OS 10.11。
Cocoa 框架应该 #import
而不是 #include
。但是,#import 需要 Objective-C 文件 (.m)。