VLCMigrationViewController.m 941 B

1234567891011121314151617181920212223242526272829
  1. /*****************************************************************************
  2. * VLCMigrationViewController.m
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Author: Carola Nitz <caro # videolan.org>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import "VLCMigrationViewController.h"
  13. #import "VLC-Swift.h"
  14. @implementation VLCMigrationViewController
  15. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
  16. return self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
  17. }
  18. - (void)viewDidLoad
  19. {
  20. [super viewDidLoad];
  21. self.view.backgroundColor = PresentationTheme.current.colors.background;
  22. [self.statusLabel setText:NSLocalizedString(@"UPGRADING_LIBRARY", "")];
  23. }
  24. @end