12345678910111213141516171819202122232425262728293031323334 |
- //
- // CPDFView.m
- // react-native-compdfkit-pdf
- //
- // Created by Xiaolong Liu on 2024/7/4.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import <ComPDFKit_Tools/ComPDFKit_Tools.h>
- @interface RCTCPDFView : UIView
- @property (nonatomic, strong) CPDFViewController *pdfViewController;
- - (void)setDocument:(NSURL *) documentURL;
- @end
- @implementation RCTCPDFView
- - (instancetype)initWithFrame:(CGRect)frame {
- self = [super initWithFrame:frame];
- if (self) {
- // 初始化
- }
- return self;
- }
- - (void)setDocument:(NSURL *)documentURL {
-
- }
- @end
|