获得包含AFNetworking lib(最新源代码)的Mac OS X项目。 Build in Debug很好。但是,发布版本会引发很多这些错误:
Synthesized property 'baseURL' must either be named the same as a compatible ivar or must explicitly name an ivar
Synthesized property 'stringEncoding' must either be named the same as a compatible ivar or must explicitly name an ivar
指向
@synthesize baseURL = _baseURL;
@synthesize stringEncoding = _stringEncoding;
等
潜入code,并且在班级(AFHTTPClient)的ivar部分或其他任何地方都没有定义_baseURL
。这就是dealloc的合成和发布。