I am new in iphone development.I am using currency converter in my apps. I don\'t have any idea how to parse json with this url http://www.google.com/calculator?. I want to sen
Using SBJson:
NSString *json = @"{lhs: "2 U.S. dollars",rhs: "89.7988506 Indian rupees",error: "",icc: true}" NSDictionary *jsonDict = [json JSONValue]; NSString *lhs = [jsonDict objectForKey:@"lhs"]; NSString *rhs = [jsonDict objectForKey:@"rhs"]; ...