소스 검색

VLCStatusLabel: hide implementation details

Gleb Pinigin 11 년 전
부모
커밋
a43890f072
2개의 변경된 파일6개의 추가작업 그리고 3개의 파일을 삭제
  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