// // CPDFView.m // react-native-compdfkit-pdf // // Created by Xiaolong Liu on 2024/7/4. // #import #import #import @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