24 lines
419 B
Objective-C
24 lines
419 B
Objective-C
//
|
|
// ReaderView.h
|
|
// Flikrkr
|
|
//
|
|
// Created by esgi on 10/04/2014.
|
|
// Copyright (c) 2014 Oui. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@protocol ReaderViewDelegate <NSObject>
|
|
|
|
- (int) numberOfPages;
|
|
- (UIView*) pageAtIndex:(int)index;
|
|
|
|
@end
|
|
|
|
@interface ReaderView : UIView
|
|
|
|
@property (nonatomic, weak) id<ReaderViewDelegate> delegate;
|
|
|
|
- (void) displayPageAtIndex:(int)index animated:(BOOL) animated;
|
|
|
|
@end |