我是AFNetworking的一名新手,並運行一個簡單的應用程序來了解AFNetworking如何工作。我正在關注this tutorial on MobileTuts:使用AFNetworking的編譯器警告
我已經包含了AFNetworking庫,並且還爲每個AFNetworking文件在編譯源中鍵入了-fno-objc-arc。
我包括這部分到實現文件:
NSURL *url = [[NSURL alloc] initWithString:@"http://itunes.apple.com/search?term=harry&country=us&entity=movie"];
NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
NSLog(@"JSON");
} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
NSLog(@"Request Failed with Error: %@, %@", error, error.userInfo);
}];
[operation start];
當我擊跑,我有14個語義問題,並在項目不合格。 例如一個錯誤是:
Method possibly missing a [super dealloc] call.
不知道如何解決這個錯誤。需要一些指導...
請發佈完整的錯誤信息。 –