ThirdSharedView.h 927 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ThirdSharedView.h
  3. // TheoryNetwork
  4. //
  5. // Created by tederen on 2019/10/10.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #define ThumbTag 997
  10. #define CollectTag 998
  11. #define SharedTag 999
  12. NS_ASSUME_NONNULL_BEGIN
  13. typedef void(^ClickButtonBlock)(UIButton *);
  14. @interface ThirdSharedView : UIView
  15. @property (nonatomic, strong) TDButton *wechatButton;
  16. @property (nonatomic, strong) TDButton *friendButton;
  17. @property (nonatomic, strong) TDButton *weiboButton;
  18. @property (nonatomic, strong) TDButton *tencentButton;
  19. @property (nonatomic, strong) TDButton *sendInfoButton;
  20. @property (nonatomic, strong) TDButton *sendGroupButton;
  21. @property (nonatomic, strong) TDButton *sendNoteButton;
  22. @property (nonatomic, strong) TDButton *sendTopicButton;
  23. @property (nonatomic, strong) TDButton *cancelButton;
  24. @property (nonatomic, copy) ClickButtonBlock clickShareBlock;
  25. @end
  26. NS_ASSUME_NONNULL_END