口袋版本的一折买

JZUMShareManager.h 798B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // JZUMShareManager.h
  3. // JIZHANG
  4. //
  5. // Created by jikaipeng on 2017/10/23.
  6. // Copyright © 2017年 kuxuan. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UMSocialCore/UMSocialCore.h>
  10. @interface JZUMShareManager : NSObject
  11. + (instancetype)shareInstance;
  12. //友盟初始化配置
  13. - (void)setUMShare;
  14. //显示分享面板
  15. - (void)shareWithUI;
  16. //分享文本
  17. - (void)shareText:(NSString *)text;
  18. /*
  19. * 分享网页
  20. * platformType: 分享渠道-比如微信,QQ等等
  21. * title: 分享标题
  22. * desc: 分享内容描述
  23. * thumImage:icon
  24. * webpageUrl:网页地址
  25. */
  26. - (void)shareWebPagewithplatformType:(UMSocialPlatformType)platformType title:(NSString *)title desc:(NSString *)desc thumImage:(NSString *)imageName webpageUrl:(NSString *)webUrl;
  27. @end