Newer
Older
XinYang_IOS / YH_Untis / WeDocument.h
@zhangfeng zhangfeng on 7 Dec 474 bytes 1.8.0
//
//  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