DocumentPickerManager.h 438 B

12345678910111213141516171819202122232425
  1. //
  2. // DocumentPickerManager.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2025/3/21.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. /**
  10. * 成功请求Block返回的字典
  11. */
  12. typedef void (^pickerSuccess) (NSArray* urls);
  13. @interface DocumentPickerManager : NSObject
  14. /** 实例化对象(单例) */
  15. + (instancetype)shareManager;
  16. - (void)openDocumentPickerSuccess:(pickerSuccess)success;
  17. @end
  18. NS_ASSUME_NONNULL_END