VLCFirstStepsSecondPageViewController.m 1017 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*****************************************************************************
  2. * VLCFirstStepsSecondPageViewController.m
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import "VLCFirstStepsSecondPageViewController.h"
  13. @interface VLCFirstStepsSecondPageViewController ()
  14. @end
  15. @implementation VLCFirstStepsSecondPageViewController
  16. - (void)viewDidLoad
  17. {
  18. [super viewDidLoad];
  19. NSString *model = [[UIDevice currentDevice] model];
  20. self.descriptionLabel.text = [NSString stringWithFormat:NSLocalizedString(@"FIRST_STEPS_ITUNES_DETAILS", @""), model, model];
  21. }
  22. - (NSString *)pageTitle
  23. {
  24. return NSLocalizedString(@"FIRST_STEPS_ITUNES", @"");
  25. }
  26. - (NSUInteger)page
  27. {
  28. return 2;
  29. }
  30. @end