作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我直截了当,那么我的问题是,我想制作一个 Web View ,它将在其中加载视频,当流开始时,我想将该视频数据下载/存储在应用程序的资源文件夹中。如何我可以这样做吗?
请有人帮助我。
BR
阿门
最佳答案
在运行时你不能将视频保存到资源文件夹,但你可以将文件保存到NSDocuments 并使用 NSFileManagers 检索它们。通过此链接进行 http://www.techotopia.com/index.php/Working_with_Files_on_the_iPhone
尝试使用此代码保存文件
NSArray *paths =NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [NSString stringWithFormat:@"%@/filename.MP4",documentsDirectory];
NSData* videoData = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"your Url"]];
[[NSFileManager defaultManager] createDirectoryAtPath:filePath withIntermediateDirectories:YES attributes:nil error:nil];
[filemanager createFileAtPath:filePath contents:videoData attributes:nil];
检索:
NSArray *paths =NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [NSString stringWithFormat:@"%@/filename.MP4",documentsDirectory];
BOOL exists = [fm fileExistsAtPath:newDirectory isDirectory:&isDir];
if (exists) {
//Play Video with contents of file path.
}
关于iphone - 如何将流媒体视频存储在 iOS 的资源文件夹中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14230005/
我是一名优秀的程序员,十分优秀!