VLCStatusLabel.h 295 B

12345678910111213141516171819
  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. #import <UIKit/UIKit.h>
  9. @interface VLCStatusLabel : UILabel
  10. {
  11. NSTimer *_displayTimer;
  12. }
  13. - (void)showStatusMessage:(NSString *)message;
  14. @end