I am parsing some data from an html file.
=>I am able to parse the strings using :-
NSArray *elements4 = [xpathParser1 search:@"//p"];
TFHppleElement *element4 = [elements4 objectAtIndex:0];
NSString *pTag = [element4 content];
m_pPText.text=pTag;
Now , I want to parse an Image from the html file. How can I do that ? Where to store the image ?
you can store the image to documents directory.