SSDKPlatform.h 486 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // SSDKPlatform.h
  3. // ShareSDK
  4. //
  5. // Created by 冯 鸿杰 on 15/2/6.
  6. // Copyright (c) 2015年 掌淘科技. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "SSDKTypeDefine.h"
  10. /**
  11. * 分享平台信息
  12. */
  13. @interface SSDKPlatform : NSObject
  14. /**
  15. * 平台类型
  16. */
  17. @property (nonatomic) SSDKPlatformType type;
  18. /**
  19. * 平台名称
  20. */
  21. @property (nonatomic, copy) NSString *name;
  22. /**
  23. * 平台图标
  24. */
  25. @property (nonatomic, retain) UIImage *icon;
  26. @end