| 1234567891011121314151617181920 |
- //
- // ModelFansTableViewCell.h
- // 千模
- //
- // Created by Drew on 2018/12/24.
- // Copyright © 2018 MUMEI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ModelFansTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *avatar;
- @property (weak, nonatomic) IBOutlet UILabel *name;
- @property (weak, nonatomic) IBOutlet UIView *modelView;
- @property (nonatomic, strong) NSDictionary *data;
- @end
- NS_ASSUME_NONNULL_END
|