iOS が Web サーバーと通信できるようにする方法に関するチュートリアル ( http://bit.ly/NI9kQe ) に従っており、AFNetworking を使用しています。次のコードは、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) セレクター setDefaultHeader:Value を宣言する可視の @interface がない
私は xcode 5.0 を使用し、iOS7 用にビルドしています。
ありがとう、