123456789101112131415161718192021222324252627282930313233343536 |
- //
- // CommentSetView.h
- // TheoryNetwork
- //
- // Created by tederen on 2019/9/26.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- #define ThumbTag 997
- #define CollectTag 998
- #define SharedTag 999
- @protocol CommentSetViewDelegate <NSObject>
- - (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<CommentSetViewDelegate> delegate;
- @end
- NS_ASSUME_NONNULL_END
|