| 12345678910111213141516 |
- //
- // MyWalletCell.h
- // model
- //
- // Created by zuxiukuan on 2018/7/15.
- // Copyright © 2018年 Mine. All rights reserved.
- // 我的钱包cell
- #import <UIKit/UIKit.h>
- @interface MyWalletCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *iconImageView;
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UIImageView *arrowView;
- @property (nonatomic, strong) UIImageView *lineView;
- @end
|