0

我的应用程序在模拟器中运行良好,但是当我尝试在设备中运行它时,在 Foundation 框架类中的 NSArray 和 NSObject 中显示错误并且我也无法构建。我正在使用 Xcode 4.2.1 而 iOS 是 5.0 (Lion)

      <Foundation/NSZone.h>   No such file or directory found
      @interface NSAutoreleasePool : NSObject {  Expected = ' "" _asm or _attribute and some Expected ')'before NSzone

谁能帮我解决这个问题。

提前致谢

4

1 回答 1

0

您不需要导入 NSZone.h 文件。使用以下

#import <Foundation/Foundation.h>

将帮助您访问 NSZone.h 类方法或变量,因为 NSZone 是完整 Foundation 框架的一部分。

或者

该框架不会成为您项目的一部分。将其添加到您的项目中,然后检查。

这应该可以解决您遇到的错误。

于 2012-09-14T09:52:14.933 回答