Prechádzať zdrojové kódy

Add a title to the About screen's navigation

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Romain Goyet 12 rokov pred
rodič
commit
68b8e3487b
1 zmenil súbory, kde vykonal 1 pridanie a 0 odobranie
  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];