12345678910111213141516171819202122232425 |
- //
- // DocumentPickerManager.h
- // 隐私保护
- //
- // Created by xd h on 2025/3/21.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- /**
- * 成功请求Block返回的字典
- */
- typedef void (^pickerSuccess) (NSArray* urls);
- @interface DocumentPickerManager : NSObject
- /** 实例化对象(单例) */
- + (instancetype)shareManager;
- - (void)openDocumentPickerSuccess:(pickerSuccess)success;
- @end
- NS_ASSUME_NONNULL_END
|