Objective-c MPMoviePlayerViewController 完成按钮语言

发布于 2024-12-10 03:24:55 字数 649 浏览 0 评论 0原文

我使用视频播放器 - 并意识到“完成”按钮似乎标有“完成”,即使我将“本地化本机开发区域”设置为“德国”

我尝试了一个网络视频,它

可能 标有“fertig”有人可以帮我解决这个问题。

代码片段在这里:

    MPMoviePlayerViewController *moviePlayer = 
[[MPMoviePlayerViewController alloc] initWithContentURL:fileURL];

[[NSNotificationCenter defaultCenter] addObserver:self 
                                         selector:@selector(playbackStateChange:)
                                             name:MPMoviePlayerPlaybackDidFinishNotification
                                           object:moviePlayer.moviePlayer];    

[mainVc  presentMoviePlayerViewControllerAnimated:moviePlayer];

im using a videoplayer - and realized that the "done" button seems to be labled with "done" even thogh i set "Localization native development region" to "Germany"

i tried a web video and there it was labled with "fertig"

maybe someone can help me with this.

the code snip is here:

    MPMoviePlayerViewController *moviePlayer = 
[[MPMoviePlayerViewController alloc] initWithContentURL:fileURL];

[[NSNotificationCenter defaultCenter] addObserver:self 
                                         selector:@selector(playbackStateChange:)
                                             name:MPMoviePlayerPlaybackDidFinishNotification
                                           object:moviePlayer.moviePlayer];    

[mainVc  presentMoviePlayerViewControllerAnimated:moviePlayer];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千纸鹤 2024-12-17 03:24:55

您可以在这里找到答案:本地化 MPMoviePlayerViewController 的完成按钮

  1. 检查信息中的 CFBundleDevelopmentRegion .plist
  2. 确保您有德语版本的 InfoPlist.strings
  3. 将模拟器的语言更改为德语

You can find the answer here: Localize Done button of MPMoviePlayerViewController

  1. check the CFBundleDevelopmentRegion in your Info.plist
  2. make sure you have the German version of InfoPlist.strings
  3. change the language of your Simulator to German
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文