| 123456789101112131415161718192021 |
- //
- // turntableRecordCell.h
- // yunbaolive
- //
- // Created by IOS1 on 2019/6/10.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface turntableRecordCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *nameL;
- @property (weak, nonatomic) IBOutlet UILabel *timeL;
- @property (weak, nonatomic) IBOutlet UIImageView *giftImgV;
- @property (weak, nonatomic) IBOutlet UILabel *giftNumL;
- @end
- NS_ASSUME_NONNULL_END
|