iOS BUG 정리 - Data argument not used by format string 경고 처리

1126 단어
 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);

좋은 웹페이지 즐겨찾기