blob: aecf0d3bcdcd53c3887523b3170fb10b188715d1 (
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 UCViewController
- (void)setDelegate:(id)delegate {
delegate_ = delegate;
}
- (void) reloadData {
}
@end
|