ClickOKCell.h 508 B

1234567891011121314151617181920212223
  1. //
  2. // ClickOKCell.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/10/26.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 点赞cell
  11. @interface ClickOKCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet YYAnimatedImageView *iconImage;
  13. @property (weak, nonatomic) IBOutlet UILabel *zanNameLB;
  14. @property (weak, nonatomic) IBOutlet UILabel *zanTextLB;
  15. @property (weak, nonatomic) IBOutlet UILabel *zanTimeLB;
  16. @end
  17. NS_ASSUME_NONNULL_END