#import "RVPage.h"
#import <Foundation/Foundation.h>
-#import <UIKit/UIView.h>
+#import <UIKit/UIKit.h>
#import "RVBook.h"
return nil;
}
-- (NSString *) rightButtonTitle {
+- (id) rightButtonTitle {
return nil;
}
+- (UINavigationButtonStyle) leftButtonStyle {
+ return [self leftButtonTitle] == nil ? UINavigationButtonStyleBack : UINavigationButtonStyleNormal;
+}
+
+- (UINavigationButtonStyle) rightButtonStyle {
+ return UINavigationButtonStyleNormal;
+}
+
- (void) _rightButtonClicked {
[self doesNotRecognizeSelector:_cmd];
}
return nil;
}
+- (UIImage *) rightButtonImage {
+ return nil;
+}
+
- (void) setPageActive:(BOOL)active {
}
[self doesNotRecognizeSelector:_cmd];
}
-- (void) setTitle:(NSString *)title {
- [book_ setTitle:title forPage:self];
-}
-
- (void) setBackButtonTitle:(NSString *)title {
[book_ setBackButtonTitle:title forPage:self];
}