1234567891011121314151617181920212223 |
- //
- // ClickOKCell.h
- // smartRhino
- //
- // Created by tederen on 2019/10/26.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- /// 点赞cell
- @interface ClickOKCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet YYAnimatedImageView *iconImage;
- @property (weak, nonatomic) IBOutlet UILabel *zanNameLB;
- @property (weak, nonatomic) IBOutlet UILabel *zanTextLB;
- @property (weak, nonatomic) IBOutlet UILabel *zanTimeLB;
- @end
- NS_ASSUME_NONNULL_END
|