前向声明错误

时间:2012-04-24 11:14:36

标签: objective-c protocols forward-declaration

我有这样的协议:

#import <Foundation/Foundation.h>

@protocol Prot1 <NSObject>

@required
- (void)methodInProtocol;

@end

这是我想要存储在这样的类中的委托的协议:

#import <Cocoa/Cocoa.h>

@class Prot1;

@interface Class1 : NSObject

@property (nonatomic, strong) Prot1 *delegate;

- (void)methodInClass;

@end

这个类的实现是这样的:

#import "Class1.h"
#import "Prot1.h"

@implementation Class1

@synthesize delegate;

- (void)methodInClass {
    [delegate methodInProt];
}

@end

当我构建这些代码时,我收到以下错误:

Receiver type 'Prot1' for instance message is a forward declaration

这里有什么问题?我确实理解我必须通过@class为协议做一个前向声明,我认为我只需要#import协议,在类实现中......不是吗?

1 个答案:

答案 0 :(得分:6)

因为它不是一个类,你必须将其定义为它是一个协议;)

使用前瞻声明:@protocol Prot1;;

并使用这样的属性:
@property (nonatomic, strong) id<Prot1> delegate;