MPMoviePlayerViewController的Localize Done按钮

时间:2011-12-07 08:56:52

标签: ios localization mpmovieplayercontroller uinavigationitem

我正在使用MPMoviePlayerViewController来呈现视频。一切都按预期工作,但如果我将设备的语言切换为例如德语,“完成”按钮未本地化。

我尝试访问该按钮并将其设置为我自己的按钮实现,如下所示:

MPMoviePlayerViewController *mp = [[MPMoviePlayerViewController alloc] initWithContentURL:url];

NSLog(@"%@", mp.navigationItem.leftBarButtonItem); // always null, but why?

// override button with locale 
mp.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Zurück"
                                             style:UIBarButtonItemStyleDone 
                                             target:self 
                                             action:@selector(dismissMoviePlayer:)];

[self presentMoviePlayerViewControllerAnimated:mp];

以前曾问过类似的问题,但从未收到任何答案:objective-c MPMoviePlayerViewController done button language

感谢您的帮助。

2 个答案:

答案 0 :(得分:11)

检查Info.plist中的CFBundleDevelopmentRegion

答案 1 :(得分:0)

您可以更改xml中的Info.plist(作为源代码打开)并进行翻译。例如:

<key>CFBundleDevelopmentRegion</key>
<string>es</string>

用西班牙语(西班牙文没有出现在列表中)