VLCStatusLabel.h 365 B

123456789101112131415161718192021
  1. //
  2. // VLCStatusLabel.h
  3. // AspenProject
  4. //
  5. // Created by Felix Paul Kühne on 17.05.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. // Refer to the COPYING file of the official project for license.
  9. //
  10. #import <UIKit/UIKit.h>
  11. @interface VLCStatusLabel : UILabel
  12. {
  13. NSTimer *_displayTimer;
  14. }
  15. - (void)showStatusMessage:(NSString *)message;
  16. @end