blob: 3e6e69277335f29a04d2e4dd1ea4df265feaba66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#import "RVPage.h"
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "RVBook.h"
extern bool IsWildcat_;
@implementation CYViewController
- (void) setDelegate:(id)delegate {
delegate_ = delegate;
}
- (void) reloadData {
}
- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
return IsWildcat_ || orientation == UIInterfaceOrientationPortrait;
}
@end
|