我正在关注如何允许iOS与Web服务器通信并使用AFNetworking的教程(http://bit.ly/NI9kQe)。以下代码在xcode中抛出错误(参见代码后):
#pragma mark - init
//intialize the API class with the destination host name
-(API*)init
{
//call super init
self = [super init];
if (self != nil) {
//initialize the object
user = nil;
[self registerHTTPOperationClass:[AFJSONRequestOperation class]];
// Accept HTTP Header; see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1
[self setDefaultHeader:@"Accept" value:@"application/json"];
}
return self;
}
我得到的2个错误是:
1)未知接收器AFJSONRequestOperation
2)没有可见的@interface声明选择器setDefaultHeader:Value
我正在使用xcode 5.0并为iOS7构建。
谢谢,