1234567891011121314151617181920212223242526272829303132 |
- //
- // HomeCommentView.h
- // smartRhino
- //
- // Created by niuzhen on 2020/2/20.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface HomeCommentView : UIView
- @property (weak, nonatomic) IBOutlet UIButton *commentButton;
- @property (weak, nonatomic) IBOutlet UIButton *commentScrollBtn;
- @property (weak, nonatomic) IBOutlet UIButton *zanButton;
- @property (weak, nonatomic) IBOutlet UIButton *collectButton;
- @property (weak, nonatomic) IBOutlet UIButton *shareButton;
- @property (weak, nonatomic) IBOutlet UILabel *commentCountL;
- @property (weak, nonatomic) IBOutlet UIImageView *zanImgV;
- @property (weak, nonatomic) IBOutlet UILabel *zanCountL;
- @property (weak, nonatomic) IBOutlet UIImageView *collectImgV;
- @property (weak, nonatomic) IBOutlet UILabel *collectL;
- @property (weak, nonatomic) IBOutlet UIImageView *shareImgV;
- @property (weak, nonatomic) IBOutlet UILabel *shareL;
- + (instancetype)shareView;
- @end
- NS_ASSUME_NONNULL_END
|