objective c - Loading NSData into WebView -
i have nsdata object , want display in webview. can webview handle/display nsdata
objects?
nsdata *data = ... // info i've gotten nsurlconnection webview *webview = ... [[webview alloc] init];
yes! nsdata handled uiwebview when supplied mime type. snippet loads .docx file in webview
nsstring *path = [urlfileinview path]; nsdata *data = [[nsfilemanager defaultmanager] contentsatpath:path]; webviewfordocsview.delegate = self; [webviewfordocsview loaddata:data mimetype:@"application/vnd.openxmlformats-officedocument.wordprocessingml.document" textencodingname:@"utf-8" baseurl:nil];
objective-c osx
No comments:
Post a Comment