KMBookletPDFView.m 419 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // KMBookletPDFView.m
  3. // PDF Reader
  4. //
  5. // Created by 蒋志鹏 on 2018/5/24.
  6. // Copyright © 2018 Kdan Mobile. All rights reserved.
  7. //
  8. #import "KMBookletPDFView.h"
  9. #import "KMBookletParameterModel.h"
  10. #import "KMBookletManager.h"
  11. @interface PDFPage ()
  12. @property (nonatomic, assign) NSInteger pageNum;
  13. @end
  14. @interface KMBookletPDFView()
  15. @end
  16. @implementation KMBookletPDFView
  17. -(void)dealloc
  18. {
  19. }
  20. @end