xcode / iOS7中的AFJSONRequestOperation错误

时间:2013-10-24 21:49:05

标签: ios ios7 afnetworking

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

谢谢,

0 个答案:

没有答案