Should I use like below??
NSURL *url = [NSURL URLWithString:@"http://www.google.com"];
NSString *content = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:nil];
But, how can I obtain the URL of the current page that I'm looking at?? I'm using UIWebView. I think it is possible... Any suggestions?
|