]>
Commit | Line | Data |
---|---|---|
7e9a36b6 JF |
1 | #import "RVPage.h" |
2 | ||
3 | #import <Foundation/Foundation.h> | |
facbc56d | 4 | #import <UIKit/UIKit.h> |
7e9a36b6 JF |
5 | |
6 | #import "RVBook.h" | |
7 | ||
f333f6c5 JF |
8 | extern bool IsWildcat_; |
9 | ||
9b623dac | 10 | @implementation CYViewController |
27afbbfc | 11 | - (void) setDelegate:(id)delegate { |
bc11cf5b | 12 | delegate_ = delegate; |
7e9a36b6 | 13 | } |
7e9a36b6 JF |
14 | - (void) reloadData { |
15 | } | |
27afbbfc | 16 | - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation { |
f333f6c5 | 17 | return IsWildcat_ || orientation == UIInterfaceOrientationPortrait; |
d817e4de GP |
18 | } |
19 | @end |