I am working on an app to show confidential data in UIWebview. All data cannot be stored on the device.
I am able to show contents and graphics by the NSData directly and I am now working on the video player. However I find it always require a local file path or a URL to play.
For example:
[Webview loadHTMLString:strVedio baseURL:[NSURL fileURLWithPath:path]];
May I ask whether there are anyway to play the video file from NSData directly? Thanks.