customShareManageTool.h 447 B

1234567891011121314151617181920
  1. //
  2. // customShareManageTool.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2024/5/11.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface customShareManageTool : NSObject
  10. + (nonnull instancetype)sharedManager;
  11. // type1 朋友圈 2 微信好友 3 QQ
  12. - (void)shareType:(NSInteger)type withShareUrl:(NSString*)shareUrl withShareTitle:(NSString*)shareTitle withShareContent:(NSString*)shareContent;
  13. @end
  14. NS_ASSUME_NONNULL_END