dragonsKnight5

Results 5 comments of dragonsKnight5

How do I get a list of elements using a class? I think it may be HTMLElements's initWithTagName but I'm still rather confused Thank you for getting back to me...

That was a big help, thank you very much. I know the next question is outside the scope of HTMLReader, but I'm hoping you can direct me to some appropriate...

I've worked around the issue using ``` NSURL *URL = [NSURL URLWithString:@"http://your-url-here"]; NSData *data = [NSData dataWithContentsOfURL:URL]; NSString *html = [NSString stringWithUTF8String:[data bytes]]; ``` I know this is on the...

Thanks for getting back to me so quickly to retrieve hyperlinks I think I use the same approach you outlined above just with the the selector string changed to "a"...

with your greatly appreciated help, I've managed to filter down to div's using a particular class then get the hyperlinks within it, I can't workout how to get url string...