CommonShareView.h 514 B

12345678910111213141516171819202122232425262728
  1. //
  2. // RoomShareView.h
  3. // UniversalApp
  4. //
  5. // Created by bogokj on 2019/8/5.
  6. // Copyright © 2019 voidcat. All rights reserved.
  7. //
  8. #import "FDUIKitObjC.h"
  9. @class CommonShareView;
  10. #define kRoomShareViewBaseBtnTag 101
  11. NS_ASSUME_NONNULL_BEGIN
  12. @protocol CommonShareViewDelegate <NSObject>
  13. - (void)shareView:(CommonShareView *)shareView didClickBtn:(QMUIButton *)sender;
  14. @end
  15. @interface CommonShareView : FDPopView
  16. @property(nonatomic, weak) id<CommonShareViewDelegate>delegate;
  17. @end
  18. NS_ASSUME_NONNULL_END