VLCAboutViewController.h 535 B

123456789101112131415161718192021
  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. @property (nonatomic, strong) IBOutlet UITextView *textContents;
  11. @property (nonatomic, strong) IBOutlet UILabel *aspenVersion;
  12. @property (nonatomic, strong) IBOutlet UILabel *vlckitVersion;
  13. @property (nonatomic, strong) IBOutlet UIBarButtonItem *dismissButton;
  14. - (IBAction)dismiss:(id)sender;
  15. @end