口袋版本的一折买

WechatShareTool.h 763B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // WechatShareTool.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/9/26.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface WechatShareTool : NSObject
  11. /**
  12. 分享图片
  13. */
  14. + (void)shareImageWithplatformType:(UMSocialPlatformType)platformType withDict:(NSDictionary *)dict;
  15. /**
  16. 分享URl
  17. */
  18. + (void)shareURLWithplatformType:(UMSocialPlatformType)platformType withDict:(NSDictionary *)dict;
  19. /**
  20. 分享Video
  21. */
  22. + (void)shareVideoWithplatformType:(UMSocialPlatformType)platformType withDict:(NSDictionary *)dict;
  23. /**
  24. 分享小程序
  25. */
  26. + (void)shareMinProgramWithplatformType:(UMSocialPlatformType)platformType withDict:(NSDictionary *)dict;
  27. @end
  28. NS_ASSUME_NONNULL_END