SharePopViewController.h 378 B

12345678910111213141516171819
  1. //
  2. // ShareViewController.h
  3. // KeleAppProject
  4. //
  5. // Created by 熊竹 on 2018/3/5.
  6. // Copyright © 2018年 Cen Zhou. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol ShareDelegate <NSObject>
  10. - (void)shareWxSession;
  11. - (void)shareWxTimeline;
  12. @end
  13. @interface SharePopViewController : UIViewController
  14. @property(nonatomic, retain) id <ShareDelegate> delegate;
  15. @end