HomeCommentView.h 997 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // HomeCommentView.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/2/20.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface HomeCommentView : UIView
  11. @property (weak, nonatomic) IBOutlet UIButton *commentButton;
  12. @property (weak, nonatomic) IBOutlet UIButton *commentScrollBtn;
  13. @property (weak, nonatomic) IBOutlet UIButton *zanButton;
  14. @property (weak, nonatomic) IBOutlet UIButton *collectButton;
  15. @property (weak, nonatomic) IBOutlet UIButton *shareButton;
  16. @property (weak, nonatomic) IBOutlet UILabel *commentCountL;
  17. @property (weak, nonatomic) IBOutlet UIImageView *zanImgV;
  18. @property (weak, nonatomic) IBOutlet UILabel *zanCountL;
  19. @property (weak, nonatomic) IBOutlet UIImageView *collectImgV;
  20. @property (weak, nonatomic) IBOutlet UILabel *collectL;
  21. @property (weak, nonatomic) IBOutlet UIImageView *shareImgV;
  22. @property (weak, nonatomic) IBOutlet UILabel *shareL;
  23. + (instancetype)shareView;
  24. @end
  25. NS_ASSUME_NONNULL_END