SkyEpub SDK for iOS 7
 All Classes Functions Variables Properties
SearchResult.h
1 //
2 // SearchResult.h
3 // skyepub
4 //
5 // Created by 하늘나무 on 2016. 3. 8..
6 // Copyright © 2016년 SkyTree. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
14 @interface SearchResult:NSObject {
16  NSString *text;
18  NSString *nodeName;
24  int endOffset;
28  NSString *chapterTitle;
30  int pageIndex;
43 }
44 
45 @property (nonatomic,retain) NSString *text;
46 @property (nonatomic,retain) NSString *nodeName;
47 @property (nonatomic,retain) NSString *chapterTitle;
48 @property int uniqueIndex,startOffset,endOffset,chapterIndex,pageIndex,numberOfSearched,numberOfSearchedInChapter,numberOfPagesInChapter,numberOfChaptersInBook;
49 @property double pagePositionInChapter,pagePositionInBook;
50 
51 @end
52