blob: 81c8739c37b145f3aef6f788e5a17d52aa49d907 (
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
|