I need some API or framework that can search for medicines in several online pharmacies in Brazil. Does it exist?
I need some API or framework that can search for medicines in several online pharmacies in Brazil. Does it exist?
NSURL *site = [NSURL URLWithString:[NSString stringWithFormat:@"http://....", termo]];
NSData *siteHTML = [NSData dataWithContentsOfURL:site];
TFHpple *siteParser = [TFHpple hppleWithHTMLData:siteHTML];
Through a TFHpple class it was possible to parse the site;)
See this very good tutorial for more information: link