나는 API에서 데이터를 가져 오기 위해 노력하고 나는이 코드를 가지고 :NSMutableURLRequest 및 JSON -이 연결을 어떻게 완료합니까?
// create the URL we'd like to query
NSString *urlString = [NSString stringWithFormat:@"https://www.googleapis.com/adsense/v1.1/reports"];
NSString *token = auth.accessToken;
NSMutableURLRequest *myURL = [NSURL URLWithString:urlString];
[myURL addValue:token forHTTPHeaderField:@"Authentication"];
// we'll receive raw data so we'll create an NSData Object with it
@@@@@@
How would I complete this step? So far I have
NSData *myData =
@@@@@@
// now we'll parse our data using NSJSONSerialization
id myJSON = [NSJSONSerialization JSONObjectWithData:myData options:NSJSONReadingMutableContainers error:nil];
// typecast an array and list its contents
NSArray *jsonArray = (NSArray *)myJSON;
NSLog(@"%@", jsonArray);
가 어떻게 9 줄에 연결하는 것입니까?
'[NSURLConnection sendAsynchronousRequest :]'를보세요. –