MyWalletCell.h 436 B

12345678910111213141516
  1. //
  2. // MyWalletCell.h
  3. // model
  4. //
  5. // Created by zuxiukuan on 2018/7/15.
  6. // Copyright © 2018年 Mine. All rights reserved.
  7. // 我的钱包cell
  8. #import <UIKit/UIKit.h>
  9. @interface MyWalletCell : UITableViewCell
  10. @property (nonatomic, strong) UIImageView *iconImageView;
  11. @property (nonatomic, strong) UILabel *titleLabel;
  12. @property (nonatomic, strong) UIImageView *arrowView;
  13. @property (nonatomic, strong) UIImageView *lineView;
  14. @end