diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2017-02-15 02:05:04 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2017-02-15 02:05:04 -0800 |
commit | f8c9fd4c9a853ca14ac1d1fb123e2e6200879bb4 (patch) | |
tree | 2d38ef9bd91a6492206b330c38ec87b7b453cc7b /CyteKit/ViewController.h | |
parent | 8eedf7e7e7afb78df8388ab7692118e6b9f3b466 (diff) |
Move private ivars in CyteKit to @implementations.
Diffstat (limited to 'CyteKit/ViewController.h')
-rw-r--r-- | CyteKit/ViewController.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/CyteKit/ViewController.h b/CyteKit/ViewController.h index f724837..3b637f0 100644 --- a/CyteKit/ViewController.h +++ b/CyteKit/ViewController.h @@ -24,8 +24,6 @@ #include <UIKit/UIKit.h> -#include <Menes/ObjectHandle.h> - @interface UIViewController (Cydia) - (BOOL) hasLoaded; - (void) reloadData; @@ -33,11 +31,7 @@ - (UIViewController *) parentOrPresentingViewController; @end -@interface CyteViewController : UIViewController { - _transient id delegate_; - BOOL loaded_; - _H<UIColor> color_; -} +@interface CyteViewController : UIViewController // The default implementation of this method is essentially a no-op, // but calling the superclass implementation is *required*. @@ -64,6 +58,7 @@ - (void) releaseSubviews; - (void) setPageColor:(UIColor *)color; +- (UIColor *) pageColor; @end |