iOS BUG整理-Data argument not used by format string的警告处理

 NSError *error;

    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:Online_Case_Lists]];

    NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];

    NSArray *caselistarray = [NSJSONSerialization JSONObjectWithData:response options:NSJSONReadingMutableLeaves error:&error];

    NSLog(@"列表",caselistarray);

 

 

如上代码~出现了这个警告,其实只是一时疏忽导致,没有写明输出的caselistarray的类型

改一下就好了。

 

NSError *error;

    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:Online_Case_Lists]];

    NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];

    NSArray *caselistarray = [NSJSONSerialization JSONObjectWithData:response options:NSJSONReadingMutableLeaves error:&error];

    NSLog(@"列表%@",caselistarray);

 

posted @ 2015-10-14 10:00  指尖上跳跃的阳光  阅读(5424)  评论(0编辑  收藏  举报