load UIWebView - NSData
How can I load a uiwebview with nsdata like if have
NSData *da = [[NSData alloc]initwithContentsofURL:[NSURL URLWithString:@"google.c开发者_开发技巧om"]]; //not tested
and now use this NSData in UIWebView.
thanks
Check out this method
- (void)loadData:(NSData *)data MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)encodingName baseURL:(NSURL *)baseURL
in the UIWebView documentation. That should allow you to load the data in the web view.
精彩评论