使用AFNetworking时遇到了 property synthesis 相关的 error

来源:互联网 发布:淘宝店铺售假扣24分 编辑:程序博客网 时间:2024/05/18 11:26

Auto property synthesis will not synthesize property 'request' because it is 'readwrite' but it will be synthesized 'readonly' via another property

Auto property synthesis will not synthesize property 'response' because it is 'readwrite' but it will be synthesized 'readonly' via another property

AFHTTPRequestOperation中定义了:

@property (readwrite, nonatomic, strong) NSURLRequest *request;

@property (readwrite, nonatomic, strong) NSHTTPURLResponse *response;

就是这样的代码,会让 request property 出现 warning。原因是因为 compiler 读取sub-class 時,会发现 request 明明应该是個 readonly propertysuper-class 讲的),但你却要将它设为 readwriteproperty,所以 compiler 不知道该怎么 auto synthesis

但你知道 super-class 的实现,也会将这个 property 改成 readwrite,因此你在 sub-class 的实现里这样子写是不会有问题的。可是 compiler 不知道啊,這要怎么办呢?

你要告诉 compiler,要它不用担心。那要怎么告诉 compiler 呢?你需要的是 @dynamic,它是一种给 compiler 的「承诺」,承诺它「虽然你现在不知道该怎么办,但是在 runtime 的时候你就会知道了」。所以只要把代码改成以下这样就可以了:

@implementation AFHTTPRequestOperation

@dynamic response;

@dynamic request;

@end

简单解释@dynamic:

写个一个类目,想给这个类加个属性。
@dynamic诉编译器,属性的settergetter方法由用自己实现,不自生成。(当然对于readonly的 属性只需提供getter即可)。假如一个属性被声明为@dynamic var,然后你没有提供@setter方法和@getter方法,编译的时候没问题,但是当程序运行到instance.var =someVar,由于缺setter方法会导致程序崩溃;或者当运行到 someVar = var时,由于缺getter方法同样会导致崩溃。编译时没问题,运行时才执行相应的方法,这就是所谓的动态绑定。

0 0
原创粉丝点击