views:

148

answers:

1

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