1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // VLCAboutViewController.m
- // AspenProject
- //
- // Created by Felix Paul Kühne on 07.04.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- #import "VLCAboutViewController.h"
- @interface VLCAboutViewController ()
- @end
- @implementation VLCAboutViewController
- - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
- {
- self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
- return self;
- }
- - (void)viewDidLoad
- {
- [super viewDidLoad];
- self.dismissButton.title = NSLocalizedString(@"BUTTON_DONE", @"");
- self.dismissButton.style = UIBarButtonItemStyleDone;
- self.textContents.text = [NSString stringWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"About Contents" ofType:@"txt"] encoding:NSUTF8StringEncoding error:nil];
- self.aspenVersion.text = [[NSString stringWithFormat:NSLocalizedString(@"VERSION_FORMAT",@""), [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]] stringByAppendingFormat:@" %@", kVLCVersionCodename];
- self.vlckitVersion.text = [NSString stringWithFormat:NSLocalizedString(@"BASED_ON_FORMAT",@""),[[VLCLibrary sharedLibrary] version]];
- }
- - (void)viewWillAppear:(BOOL)animated
- {
- [self.navigationController setNavigationBarHidden:YES animated:NO];
- if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
- [UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleBlackTranslucent;
- [super viewWillAppear:animated];
- }
- - (void)viewWillDisappear:(BOOL)animated
- {
- [self.navigationController setNavigationBarHidden:NO animated:YES];
- [UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleBlackOpaque;
- [super viewWillDisappear:animated];
- }
- - (IBAction)dismiss:(id)sender
- {
- [self.navigationController popViewControllerAnimated:YES];
- }
- @end
|