Hi, I got an error when I was tying to use the example app. `AFHTTPRequestOperation error` is being overwritten and is calling `self.responseObject`. The problem is that `AFHTTPRequestOperation responseObject` implementation [calls](https://github.com/AFNetworking/AFNetworking/blob/2.2.3/AFNetworking/AFHTTPRequestOperation.m#L85) `self.error` and then we get an infinite loop crash. The "right" thing to do here is [probably](https://github.com/AFNetworking/AFNetworking/issues/1690#issuecomment-30550638) remove the code inside `AFHTTPRequestOperation` and move it to a custom `AFHTTPResponseSerializer` class. Here I'm using AFNetworking (2.3.1).
Hi, I got an error when I was tying to use the example app.
AFHTTPRequestOperation erroris being overwritten and is callingself.responseObject.The problem is that
AFHTTPRequestOperation responseObjectimplementation callsself.errorand then we get an infinite loop crash.The "right" thing to do here is probably remove the code inside
AFHTTPRequestOperationand move it to a customAFHTTPResponseSerializerclass.Here I'm using AFNetworking (2.3.1).