gpt4 book ai didi

iphone - 如何正确构建本地电影URL?

转载 作者:行者123 更新时间:2023-12-01 18:03:05 26 4
gpt4 key购买 nike

在我的iPhone应用程序中,用户可以单击表格单元格,然后将开始播放电影。这部电影是我项目中“/Resources/myMovie.m4v”下的本地文件。我不知道如何正确链接到它。

我找到了以下代码,但似乎不起作用:

NSString *rootPath = [[NSBundle mainBundle] resourcePath];
NSString *filePath = [rootPath stringByAppendingPathComponent:@"myMovie.m4v"];
NSURL *fileURL = [NSURL fileURLWithPath:filePath isDirectory:NO];

moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL: [NSURL fileURLWithPath:filePath isDirectory:NO]];

谢谢您的帮助!

最佳答案

该文件肯定在主捆绑包中吗?

尝试使用它来获取URL。

NSURL *url = [[NSBundle mainBundle] URLForResource:@"myMovie" withExtension:@"m4v"];
moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:url];

关于iphone - 如何正确构建本地电影URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5372580/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com