123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #import <Foundation/Foundation.h>
- @interface ReaderDocumentOutline : NSObject <NSObject>
- + (NSArray *)outlineFromFileURL:(NSURL *)fileURL password:(NSString *)phrase;
- + (void)logDocumentOutlineArray:(NSArray *)array;
- @end
- @interface DocumentOutlineEntry : NSObject <NSObject>
- + (instancetype)newWithTitle:(NSString *)title target:(id)target level:(NSInteger)level;
- @property (nonatomic, assign, readonly) NSInteger level;
- @property (nonatomic, strong, readwrite) NSMutableArray *children;
- @property (nonatomic, strong, readonly) NSString *title;
- @property (nonatomic, strong, readonly) id target;
- @end
|