// // CommentSetView.h // TheoryNetwork // // Created by tederen on 2019/9/26. // Copyright © 2019 tederen. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN #define ThumbTag 997 #define CollectTag 998 #define SharedTag 999 @protocol CommentSetViewDelegate - (void)commentInputTouch; - (void)functionTouch:(TDButton *)button; - (void)commentNunberClick; @end @interface CommentSetView : UIView @property (nonatomic, strong) TDButton *thumbButton; @property (nonatomic, strong) TDButton *collectButton; @property (nonatomic, strong) TDButton *sharedButton; @property (nonatomic, strong) TDButton *commentNumberBtn; @property (nonatomic, strong) UILabel *numLabel; @property (nonatomic, weak) id delegate; @end NS_ASSUME_NONNULL_END