summaryrefslogtreecommitdiff
path: root/UICaboodle/RVPage.mm
blob: a28e37ce74c8c3696af00b4d1589b19b21e1d1c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import "RVPage.h"

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

#import "RVBook.h"

@implementation CYViewController
- (void)setDelegate:(id)delegate {
    delegate_ = delegate;
}
- (void) reloadData {
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
    return (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad || orientation == UIInterfaceOrientationPortrait);
}
@end