美文网首页
视频地址截取转成本地资源列表路径

视频地址截取转成本地资源列表路径

作者: eb7a9dac29d0 | 来源:发表于2017-07-24 17:28 被阅读0次

NSString *videoUrl;

if (url.length > 6) {

NSArray *tempArray = [url componentsSeparatedByString:@"/"];

NSString *getUrl = [NSString stringWithFormat:@"%@",tempArray[tempArray.count - 1]];

NSString *cachesPath =  [ExtensionObject fileExist:@"resource"];//获取本地资源列表路径

videoUrl = [NSString stringWithFormat:@"%@/%@",cachesPath,getUrl];

}

[self playVideo:videoUrl];

相关文章

网友评论

      本文标题:视频地址截取转成本地资源列表路径

      本文链接:https://www.haomeiwen.com/subject/kngbkxtx.html