0

我是目标 c 编程和一般编程的新手。

我正在尝试找出如何将子类添加到项目中。

我的桌面上有两个单独的 Xcode 项目,位于一个文件夹中。

Shapes [文件夹] 包含两个项目文件夹:矩形项目和方形项目

-- 矩形项目包括:

`Rectangle.h` [interface]

`Rectangle.m` [implementation]

`Rectangle Project.m` [main]

@interface Rectangle : NSObject

-- Square项目包括:

`Square.h` [interface]

`Square.m` [implementation]

`Square Project.m` [main]

@interface Square : Rectangle

我想将矩形项目中的 rectangle.h 文件导入到 square.h 文件中的正方形项目中。

在我的 Square.h 文件中,我添加了以下内容:

#import <Cocoa/Cocoa.h>
#import <Foundation/Foundation.h>
#import "Rectangle.h"

@interface Square : Rectangle 

...我不断收到错误消息: Rectangle: No such file or directory

如何让目标 c 重新识别文件?

我希望我是有道理的...

谢谢。

4

1 回答 1

3

你需要“.h”:

#import "Rectangle.h"

就像:

#import <Cocoa/Cocoa.h>
于 2012-09-18T16:26:53.507 回答