How to load UIWebView with an html page retrieved by NSURLConnect?
+1
A:
NSURLConnection
should give you some NSData
. Then you can load these data into the web view with -loadData:MIMEType:textEncodingName:baseURL:
.
(You can use -loadRequest:
if you don't need to manipulate the data before loading.)
KennyTM
2010-02-06 14:42:03