blob: 8c702d30fcbf5df864236b0ec1ee036c9cbe6033 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#import "RVPage.h"
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "RVBook.h"
@implementation CYViewController
- (void)setDelegate:(id)delegate {
delegate_ = delegate;
}
- (void) reloadData {
}
@end
|