12345678910111213141516171819202122232425262728293031 |
- //
- // KMBookletPDFView.m
- // PDF Reader
- //
- // Created by 蒋志鹏 on 2018/5/24.
- // Copyright © 2018 Kdan Mobile. All rights reserved.
- //
- #import "KMBookletPDFView.h"
- #import "KMBookletParameterModel.h"
- #import "KMBookletManager.h"
- @interface PDFPage ()
- @property (nonatomic, assign) NSInteger pageNum;
- @end
- @interface KMBookletPDFView()
- @end
- @implementation KMBookletPDFView
- -(void)dealloc
- {
-
- }
- @end
|