| 12345678910111213141516171819202122232425262728 |
- //
- // YBVipCell.h
- // YBVideo
- //
- // Created by YB007 on 2019/11/20.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YBVipCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *flagIV;
- @property (weak, nonatomic) IBOutlet UILabel *nameL;
- @property (weak, nonatomic) IBOutlet UILabel *infoL;
- +(YBVipCell *)cellWithTab:(UITableView *)table index:(NSIndexPath *)index;
- @end
- NS_ASSUME_NONNULL_END
|