我看到 Objective-C 协议的使用方式如下:
@protocol MyProtocol <NSObject>
@required
@property (readonly) NSString *title;
@optional
- (void) someMethod;
@end
我见过这种格式,而不是编写子类扩展的具体超类。问题是,如果你遵守这个协议,你需要自己合成属性吗?如果您正在扩展一个超类,答案显然是否定的,您不需要这样做。但是如何处理协议需要遵守的属性呢?
根据我的理解,您仍然需要在符合需要这些属性的协议的对象的头文件中声明实例变量。在这种情况下,我们可以假设它们只是一个指导原则吗?显然,对于必需的方法来说,情况并非如此。编译器会因为你排除了一个协议列出的必需方法而惩罚你。房地产背后的故事是什么?
下面是一个生成编译错误的例子(注意: 我已经修剪了没有反映当前问题的代码) :
MyProtocol.h
@protocol MyProtocol <NSObject>
@required
@property (nonatomic, retain) id anObject;
@optional
TestProtocolsViewController.h
- (void)iDoCoolStuff;
@end
#import <MyProtocol.h>
@interface TestProtocolsViewController : UIViewController <MyProtocol> {
}
@end
TestProtocolsViewController.m
#import "TestProtocolsViewController.h"
@implementation TestProtocolsViewController
@synthesize anObject; // anObject doesn't exist, even though we conform to MyProtocol.
- (void)dealloc {
[anObject release]; //anObject doesn't exist, even though we conform to MyProtocol.
[super dealloc];
}
@end