diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2013-12-23 16:18:02 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2013-12-23 16:18:02 -0800 |
commit | d32f96beabb726c84dfeaa3a51bb365eded7f8f9 (patch) | |
tree | c60863e6007bd76307d1929b7c98a6eb129b50a4 /CyteKit/ViewController.h | |
parent | 5738f070516b40d0ae4e0ebb570ec86449b4ad60 (diff) |
Fix background color so it works on all iOS builds.
Diffstat (limited to 'CyteKit/ViewController.h')
-rw-r--r-- | CyteKit/ViewController.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CyteKit/ViewController.h b/CyteKit/ViewController.h index e371268..b137249 100644 --- a/CyteKit/ViewController.h +++ b/CyteKit/ViewController.h @@ -26,6 +26,8 @@ #include <UIKit/UIKit.h> +#include <Menes/ObjectHandle.h> + @interface UIViewController (Cydia) - (BOOL) hasLoaded; - (void) reloadData; @@ -36,6 +38,7 @@ @interface CyteViewController : UIViewController { _transient id delegate_; BOOL loaded_; + _H<UIColor> color_; } // The default implementation of this method is essentially a no-op, @@ -62,6 +65,8 @@ // just happens not to be visible. - (void) releaseSubviews; +- (void) setPageColor:(UIColor *)color; + @end #endif//CyteKit_ViewController_H |