// // WeDocument.h // YHScrollView_Test // // Created by Jim on 2021/9/3. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface WeDocument : UIDocument @property (nonatomic, strong, nullable) NSData *documentData; //文件名 @property (nonatomic, copy, nullable) NSString *docFileName; //文件类型 @property (nonatomic, copy, nullable) NSString *docMIMEType; //文件大小 @property (nonatomic, assign) NSUInteger docLength; @end NS_ASSUME_NONNULL_END