我正在关注有关如何允许 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 构建。
谢谢,