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);

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-26
  • 2021-10-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-30
  • 2021-10-15
  • 2021-11-03
  • 2021-09-30
  • 2021-11-19
相关资源
相似解决方案