12345678910111213141516171819202122232425262728293031 |
- //
- // JZUMShareManager.h
- // JIZHANG
- //
- // Created by jikaipeng on 2017/10/23.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UMSocialCore/UMSocialCore.h>
- @interface JZUMShareManager : 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 thumImage:(NSString *)imageName webpageUrl:(NSString *)webUrl;
- @end
|