Przeglądaj źródła

VLCStatusLabel: hide implementation details

Gleb Pinigin 11 lat temu
rodzic
commit
a43890f072
2 zmienionych plików z 6 dodań i 3 usunięć
  1. 0 3
      Sources/VLCStatusLabel.h
  2. 6 0
      Sources/VLCStatusLabel.m

+ 0 - 3
Sources/VLCStatusLabel.h

@@ -13,9 +13,6 @@
 #import <UIKit/UIKit.h>
 
 @interface VLCStatusLabel : UILabel
-{
-    NSTimer *_displayTimer;
-}
 
 - (void)showStatusMessage:(NSString *)message;
 

+ 6 - 0
Sources/VLCStatusLabel.m

@@ -13,6 +13,12 @@
 
 #import "VLCStatusLabel.h"
 
+@interface VLCStatusLabel ()
+{
+    NSTimer *_displayTimer;
+}
+@end
+
 @implementation VLCStatusLabel
 
 - (void)showStatusMessage:(NSString *)message