1234567891011121314151617181920212223242526272829 |
- //
- // ThirdSharedView.h
- // TheoryNetwork
- //
- // Created by tederen on 2019/10/10.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #define ThumbTag 997
- #define CollectTag 998
- #define SharedTag 999
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^ClickButtonBlock)(UIButton *);
- @interface ThirdSharedView : UIView
- @property (nonatomic, strong) TDButton *wechatButton;
- @property (nonatomic, strong) TDButton *friendButton;
- @property (nonatomic, strong) TDButton *weiboButton;
- @property (nonatomic, strong) TDButton *tencentButton;
- @property (nonatomic, strong) TDButton *sendInfoButton;
- @property (nonatomic, strong) TDButton *sendGroupButton;
- @property (nonatomic, strong) TDButton *sendNoteButton;
- @property (nonatomic, strong) TDButton *sendTopicButton;
- @property (nonatomic, strong) TDButton *cancelButton;
- @property (nonatomic, copy) ClickButtonBlock clickShareBlock;
- @end
- NS_ASSUME_NONNULL_END
|