HMShareView.h 656 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // HMShareView.h
  3. // BuguLive
  4. //
  5. // Created by 范东 on 2019/1/2.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import "BGBaseView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol HMShareViewDelegate <NSObject>
  11. - (void)clickShareViewBtn:(UMSocialPlatformType)type;
  12. - (void)clickShareViewReportBtn;
  13. @end
  14. @interface HMShareView : BGBaseView
  15. @property (nonatomic, assign) id<HMShareViewDelegate> delegate;
  16. /**
  17. 展示分享弹窗
  18. @param superView 父视图
  19. @param isNeedReport 是否需要举报按钮
  20. */
  21. - (void)show:(UIView *)superView isNeedReport:(BOOL)isNeedReport;
  22. /**
  23. 隐藏分享弹窗
  24. */
  25. - (void)hide;
  26. @end
  27. NS_ASSUME_NONNULL_END