浏览代码

Add a title to the About screen's navigation

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Romain Goyet 12 年之前
父节点
当前提交
68b8e3487b
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      AspenProject/VLCAboutViewController.m

+ 1 - 0
AspenProject/VLCAboutViewController.m

@@ -24,6 +24,7 @@
 {
     [super viewDidLoad];
 
+    self.navigationItem.title = NSLocalizedString(@"ABOUT_APP", @"");
     [self.webView loadHTMLString:[NSString stringWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"About Contents" ofType:@"html"] encoding:NSUTF8StringEncoding error:nil] baseURL:nil];
     self.webView.delegate = self;
     self.aspenVersion.text = [[NSString stringWithFormat:NSLocalizedString(@"VERSION_FORMAT",@""), [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]] stringByAppendingFormat:@" %@", kVLCVersionCodename];