urllib alternative for iPhone
Posted
by Pr301
on Stack Overflow
See other posts from Stack Overflow
or by Pr301
Published on 2010-05-23T14:57:55Z
Indexed on
2010/05/23
15:00 UTC
Read the original article
Hit count: 240
hi, I am trying to create an iPhone application which in some point connects to the internet, fills an on-line form, fetches the resulting website, parses it and returns a string to the user. I want all this process to happen in the background. I know how to do this kind of things with python and urllib but in objc I can't find an alternative, from on-line search I found either sites that explain how to use webkit to retrieve webpages (I suppose this is for displaying them to the user) or how to parse an existing HTML file or string. Since I want the file to be retrieved from the internet and the whole process should be running in the background, neither of these solutions covers my needs.
© Stack Overflow or respective owner