12345678910111213141516171819202122 |
- //
- // MyZanCell.h
- // smartRhino
- //
- // Created by tederen on 2019/11/19.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MyZanCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet YYAnimatedImageView *zanImageView;
- @property (weak, nonatomic) IBOutlet UILabel *zanNamelabel;
- @property (weak, nonatomic) IBOutlet UILabel *zanNameDescriptlabel;
- @property (weak, nonatomic) IBOutlet UILabel *zanTimelabel;
- @property (weak, nonatomic) IBOutlet UIView *topLineV;
- @end
- NS_ASSUME_NONNULL_END
|