No Description

KXCreditCardTableViewCell.h 614B

123456789101112131415161718192021
  1. //
  2. // KXCreditCardTableViewCell.h
  3. // CAISHEN
  4. //
  5. // Created by xiaoxi on 2017/12/1.
  6. // Copyright © 2017年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class KXCreditCardModel;
  10. @interface KXCreditCardTableViewCell : UITableViewCell
  11. @property (nonatomic, strong) UIImageView *iconView;
  12. @property (nonatomic, strong) UILabel *nameView;
  13. @property (nonatomic, strong) UILabel *adView;
  14. @property (nonatomic, strong) UILabel *personsView;
  15. @property (nonatomic, strong) KXCreditCardModel *cardModel;
  16. @property (nonatomic, strong) UILabel *lineView;
  17. @property (nonatomic, strong) UIButton *leftBtn;
  18. @end