12345678910111213141516171819 |
- //
- // KDPDrawerList.h
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/8.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPDrawerListCell : UITableViewCell
- @property(nonatomic,strong)UIImageView *iconImg;
- @property(nonatomic,strong)UILabel *titleLabel;
- @end
- NS_ASSUME_NONNULL_END
|