VLCFirstStepsFifthPageViewController.m 851 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*****************************************************************************
  2. * VLCFirstStepsFifthPageViewController.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 "VLCFirstStepsFifthPageViewController.h"
  13. @interface VLCFirstStepsFifthPageViewController ()
  14. @end
  15. @implementation VLCFirstStepsFifthPageViewController
  16. - (void)viewDidLoad
  17. {
  18. [super viewDidLoad];
  19. /* FIXME: l10n */
  20. }
  21. - (NSString *)pageTitle
  22. {
  23. return NSLocalizedString(@"FIRST_STEPS_PLAYBACK", @"");
  24. }
  25. - (NSUInteger)page
  26. {
  27. return 5;
  28. }
  29. @end