JXShareViewController.h 572 B

12345678910111213141516171819202122232425262728
  1. //
  2. // JXShareViewController.h
  3. // share
  4. //
  5. // Created by 1 on 2019/3/20.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class JXShareViewController;
  10. @protocol JXShareVCDlegate <NSObject>
  11. - (void)sendToLifeCircleSucces:(JXShareViewController *)shareVC;
  12. @end
  13. @interface JXShareViewController : UIViewController
  14. @property (nonatomic, strong) UIImage *image;
  15. @property (nonatomic, strong) NSDictionary *dataDict;
  16. @property (nonatomic, strong) UITextView *textView;
  17. @property (weak, nonatomic) id <JXShareVCDlegate> delegate;
  18. @end