- initWithContentsOfURL: is deprecated (as of 10.4) and replaced with - initWithContentsOfURL:encoding:error: and - initWithContentsOfURL:usedEncoding:error:.
None of the initWithContentsOfURL:... methods will allow you to answer the authentication message from the https server. So look at NSURLConnection and NSURLDownload which have delegate messages that help you handle authentication.
To learn more about using URL's for communicating with servers read Introduction to the URL Loading System.
As far as parsing HTML with an XML parser, it will only reliably work with XHTML. So if you are creating and parsing your own XHTML files that should work in most cases. But if you are loading any HTML file from the internet then the XML parser will often not be able to parse the file. You may want to look at WebKit for that.
|
2 | removed incorrect statement about depreciated methods | ||
|
|
||||
|
1 |
|
||
|
||||
