JXShareModel.h 723 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // JXShareModel.h
  3. // shiku_im
  4. //
  5. // Created by MacZ on 16/8/22.
  6. // Copyright © 2016年 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. typedef enum : NSUInteger {
  10. JXShareToWechatSesion,
  11. JXShareToWechatTimeline,
  12. JXShareToSina,
  13. JXShareToFaceBook,
  14. JXShareToTwitter,
  15. JXShareToWhatsapp,
  16. JXShareToSMS,
  17. JXShareToLine,
  18. } JXShareTo;
  19. @interface JXShareModel : NSObject
  20. @property (nonatomic,assign) JXShareTo shareTo;
  21. @property (nonatomic,copy) NSString *shareTitle;
  22. @property (nonatomic,copy) NSString *shareContent;
  23. @property (nonatomic,copy) NSString *shareUrl;
  24. @property (nonatomic,strong) UIImage *shareImage;
  25. @property (nonatomic,copy) NSString *shareImageUrl;
  26. @end