123456789101112131415161718192021222324252627282930313233343536 |
- //
- // WechatShareTool.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/9/26.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface WechatShareTool : NSObject
- /**
- 分享图片
- */
- + (void)shareImageWithplatformType:(UMSocialPlatformType)platformType withDict:(NSDictionary *)dict;
- /**
- 分享URl
- */
- + (void)shareURLWithplatformType:(UMSocialPlatformType)platformType withDict:(NSDictionary *)dict;
- /**
- 分享Video
- */
- + (void)shareVideoWithplatformType:(UMSocialPlatformType)platformType withDict:(NSDictionary *)dict;
- /**
- 分享小程序
- */
- + (void)shareMinProgramWithplatformType:(UMSocialPlatformType)platformType withDict:(NSDictionary *)dict;
- @end
- NS_ASSUME_NONNULL_END
|