如何获取存储在 iphone sdk 数据库中的 urllink 数据?
问问题
56 次
1 回答
2
使用以下代码可能会对您有所帮助。
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"Your URL"]]];
// Perform request and get JSON as a NSData object
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSLog(@"Your Data=%@",response);
id jsonObject = [NSJSONSerialization JSONObjectWithData:response options:NSJSONReadingAllowFragments error:nil];
于 2012-12-08T08:12:14.347 回答