瀏覽代碼

Refactoring: hide ivars

Gleb Pinigin 12 年之前
父節點
當前提交
bb5e9d4a50
共有 2 個文件被更改,包括 4 次插入5 次删除
  1. 0 4
      AspenProject/VLCAppDelegate.h
  2. 4 1
      AspenProject/VLCAppDelegate.m

+ 0 - 4
AspenProject/VLCAppDelegate.h

@@ -11,10 +11,6 @@
 @class VLCPlaylistViewController;
 @class PAPasscodeViewController;
 @interface VLCAppDelegate : UIResponder <UIApplicationDelegate>
-{
-    NSURL *_tempURL;
-    PAPasscodeViewController *_passcodeLockController;
-}
 
 - (void)updateMediaList;
 

+ 4 - 1
AspenProject/VLCAppDelegate.m

@@ -12,7 +12,10 @@
 #import "VLCMovieViewController.h"
 #import "PAPasscodeViewController.h"
 
-@interface VLCAppDelegate () <PAPasscodeViewControllerDelegate>
+@interface VLCAppDelegate () <PAPasscodeViewControllerDelegate> {
+    NSURL *_tempURL;
+    PAPasscodeViewController *_passcodeLockController;
+}
 
 @property (nonatomic) BOOL passcodeValidated;