diff options
author | Grant Paul <chpwn@chpwn.com> | 2010-09-21 10:53:41 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 10:42:31 +0000 |
commit | b5e7eebb25026afcb8052552a5fedb7984c08a38 (patch) | |
tree | 904c8b45935bae94a1d40a3ffe91b8e4e0549573 /UICaboodle/RVPage.h | |
parent | df86a2c8189742f00ba09e75b77b6f0cc7eb1824 (diff) |
Commit (chpwn): uiviewcontroller-final.patch
Diffstat (limited to 'UICaboodle/RVPage.h')
-rw-r--r-- | UICaboodle/RVPage.h | 40 |
1 files changed, 4 insertions, 36 deletions
diff --git a/UICaboodle/RVPage.h b/UICaboodle/RVPage.h index 284ebca..270c248 100644 --- a/UICaboodle/RVPage.h +++ b/UICaboodle/RVPage.h @@ -2,41 +2,9 @@ #import <UIKit/UIKit.h> -@class NSString; -@class RVBook; - -@interface RVPage : UIView { - _transient RVBook *book_; - _transient id delegate_; +@interface UCViewController : UIViewController { + id delegate_; } - -- (bool) splitView; - -- (NSString *) title; -- (NSString *) backButtonTitle; -- (id) rightButtonTitle; -- (NSString *) leftButtonTitle; -- (UIView *) accessoryView; - -- (UIImage *) rightButtonImage; - -- (UINavigationButtonStyle) leftButtonStyle; -- (UINavigationButtonStyle) rightButtonStyle; - -- (void) _rightButtonClicked; -- (void) _leftButtonClicked; - -- (void) setPageActive:(BOOL)active; -- (void) resetViewAnimated:(BOOL)animated; - -- (void) setBackButtonTitle:(NSString *)title; - -- (void) reloadButtons; -- (void) reloadData; - -- (id) initWithBook:(RVBook *)book; - -- (void) setDelegate:(id)delegate; -- (void) setBook:(RVBook *)book; - +- (void)setDelegate:(id)delegate; @end + |