0

我想写一个需要定义NSEvent的方法,所以我需要NSEvent.h。我正在使用的 SDK (3.1.3) 的框架中似乎没有 NSEvent.h。我发现它在 /Developers 下的 AppKit.framework 中。使用 Xcode,我导航到这个 AppKit 的位置并添加了它。现在 AppKit 与 UIKit 一起出现在 Xcode 中的 Frameworks 列表中,当我在 Xcode 中打开 AppKit 框架的 Headers 时,它列出了 AppKit.h 和 NSEvent.h。尽管如此,这些行:

 #import <AppKit/AppKit.h>
 #import <AppKit/NSEvent.h>

两者都产生“没有这样的文件或目录”消息。

有谁知道怎么了?

4

1 回答 1

3

AppKit 和 NSEvent 不是 iOS SDK 的一部分。也就是说,它们不能在 iPhone、iPod 或 iPad 上使用。仅在 Mac 上。

于 2010-11-06T07:40:12.957 回答