123456789101112131415161718192021 |
- //
- // KXCreditCardTableViewCell.h
- // CAISHEN
- //
- // Created by xiaoxi on 2017/12/1.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class KXCreditCardModel;
- @interface KXCreditCardTableViewCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *iconView;
- @property (nonatomic, strong) UILabel *nameView;
- @property (nonatomic, strong) UILabel *adView;
- @property (nonatomic, strong) UILabel *personsView;
- @property (nonatomic, strong) KXCreditCardModel *cardModel;
- @property (nonatomic, strong) UILabel *lineView;
- @property (nonatomic, strong) UIButton *leftBtn;
- @end
|