NSString *urlString = [NSString
stringWithFormat:@"http://192.168.1.15/abc/service.asmx?op=GetCenter"];
NSURL *url = [NSURL URLWithString:[urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
NSData *data = [[NSData alloc] initWithContentsOfURL:url];
NSError *error;
NSMutableArray *json =[NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
NSLog(@"%@",[json description]);
我試過這個,但它返回的是空值調用函數。如何調用WebService json objectiveC iOS調用函數
Program ended with exit code: 9(lldb)
如何識別是否調用webserive或者如何調用該函數?
應用程序是否會自動死掉,或者你正在殺死它?什麼是錯誤返回給你? – Wain
退出代碼表明您的應用程序已被殺死 –
@SmitSaraiya您沒有請求該網址的數據。你需要使用的NSURLRequest –