ios - download web page source code on iphone -


i need download particular webpage on iphone. redirects me if use desktop. tools out there me this? have tried sitesucker didnt work.

thanks!

if redirects when use desktop access it, can right click link , download page source. since want on iphone, can following:

// download webpage nsurl *url = [nsurl urlwithstring:@"https://yoururl.here"]; nsdata *urldata = [nsdata datawithcontentsofurl:url]; [urldata writetofile:filepath atomically:yes]; 

and can access data through simulator folder or directly nsstring.

nsurl *url = [nsurl urlwithstring:@"https://yoururl.here"]; nsstring *source = [nsstring stringwithcontentsofurl:url encoding:nsutf8stringencoding error:null] 

Popular posts from this blog