VLCAboutViewController.h 662 B

12345678910111213141516171819202122232425
  1. //
  2. // VLCAboutViewController.h
  3. // AspenProject
  4. //
  5. // Created by Felix Paul Kühne on 07.04.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface VLCAboutViewController : UIViewController
  10. {
  11. UITextView *_textContents;
  12. UILabel *_aspenVersion;
  13. UILabel *_vlckitVersion;
  14. UIBarButtonItem *_dismissButton;
  15. }
  16. @property (nonatomic, retain) IBOutlet UITextView *textContents;
  17. @property (nonatomic, retain) IBOutlet UILabel *aspenVersion;
  18. @property (nonatomic, retain) IBOutlet UILabel *vlckitVersion;
  19. @property (nonatomic, retain) IBOutlet UIBarButtonItem *dismissButton;
  20. - (IBAction)dismiss:(id)sender;
  21. @end