JXShareListVC.h 511 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // JXShareSelectView.h
  3. // shiku_im
  4. //
  5. // Created by MacZ on 15/8/26.
  6. // Copyright (c) 2015年 Reese. All rights reserved.
  7. //
  8. #import "admobViewController.h"
  9. #import <UIKit/UIKit.h>
  10. #import "JXShareModel.h"
  11. @protocol ShareListDelegate <NSObject>
  12. - (void)didShareBtnClick:(UIButton *)shareBtn;
  13. @end
  14. @interface JXShareListVC : UIViewController{
  15. UIView *_listView;
  16. JXShareListVC *_pSelf;
  17. }
  18. @property (nonatomic,weak) id<ShareListDelegate> shareListDelegate;
  19. - (void)showShareView;
  20. @end