問題
?再利用以下代碼獲取視頻文件路徑的時候返回路徑為nil
NSString *noteVideoPath = [[NSBundle mainBundle] pathForResource:@"video" ofType:@"mp4"];
原因
bundle文件沒有添加到項目中
解決步驟
- Build Phases -> Copy Bundle Resources 中添加對應(yīng)視頻文件這樣將視頻文件加入bundle中
- 執(zhí)行上述代碼可以獲得路徑
//獲取文件路徑
NSString *noteVideoPath = [[NSBundle mainBundle] pathForResource:@"notevideo20181023" ofType:@"mp4"];
//獲取文件Url
NSURL *videoUrl = [[NSBundle mainBundle] URLForResource:@"video.mp4" withExtension:nil];