ShareSDKUI.h 984 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // ShareSDKUI.h
  3. // ShareSDKUI
  4. //
  5. // Created by fenghj on 15/6/18.
  6. // Copyright (c) 2015年 mob. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "ShareSDK+SSUI.h"
  10. #import "SSUIShareActionSheetController.h"
  11. #import "SSUIShareContentEditorViewController.h"
  12. @interface ShareSDKUI : NSObject
  13. /**
  14. * 创建分享菜单
  15. *
  16. * @param items 分享菜单项
  17. *
  18. * @return 分享菜单控制器
  19. */
  20. + (SSUIShareActionSheetController *)shareActionSheetWithItems:(NSArray *)items;
  21. /**
  22. * 创建内容编辑视图
  23. *
  24. * @param content 内容
  25. * @param image 图片
  26. * @param platformTypes 分享平台列表
  27. *
  28. * @return 内容编辑视图控制器
  29. */
  30. + (SSUIShareContentEditorViewController *)contentEditorViewWithContent:(NSString *)content
  31. image:(SSDKImage *)image
  32. platformTypes:(NSArray *)platformTypes;
  33. @end