1234567891011121314151617181920212223242526272829303132333435 |
- //
- // HYUMShareManager.h
- // JIZHANG
- //
- // Created by jikaipeng on 2017/10/23.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UMSocialCore/UMSocialCore.h>
- @interface HYUMShareManager : NSObject
- + (instancetype)shareInstance;
- //友盟初始化配置
- - (void)setUMShare;
- //显示分享面板
- - (void)shareWithUI;
- //分享文本
- - (void)shareText:(NSString *)text;
- /*
- * 分享网页
- * platformType: 分享渠道-比如微信,QQ等等
- * title: 分享标题
- * desc: 分享内容描述
- * thumImage:icon
- * webpageUrl:网页地址
- */
- - (void)shareWebPagewithplatformType:(UMSocialPlatformType)platformType title:(NSString *)title desc:(NSString *)desc thumImageUrl:(NSString *)imageUrl webpageUrl:(NSString *)webUrl;
- -(void)shareImageWithplatformType:(UMSocialPlatformType)platformType withImg:(UIImage *)img;
- @end
|