123456789101112131415161718 |
- //
- // KMPDFBookletWindowController.h
- // PDF Reader
- //
- // Created by 蒋志鹏 on 2018/5/22.
- // Copyright © 2018 Kdan Mobile. All rights reserved.
- //
- #import <Cocoa/Cocoa.h>
- #import <Quartz/Quartz.h>
- @interface KMPDFBookletWindowController : NSWindowController
- - (id)initWithPDFFilePath:(NSString *)filePath password:(nullable NSString *)password;
- - (id)initWithDocument:(PDFDocument *)pdfDocument;
- @end
|