20 lines
416 B
C
20 lines
416 B
C
|
|
//
|
||
|
|
// MTCommonListTableViewCell.h
|
||
|
|
// MTCommonListTable
|
||
|
|
//
|
||
|
|
// Created by ko1o on 2018/8/29.
|
||
|
|
// Copyright © 2018年 ko1o. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "MTCommonListTableConfig.h"
|
||
|
|
|
||
|
|
@interface MTCommonListTableViewCell : UITableViewCell
|
||
|
|
|
||
|
|
@property (nonatomic, strong) MTCommonListTableCellConfig *cellConfig;
|
||
|
|
|
||
|
|
+ (instancetype)cellWithConfig:(MTCommonListTableCellConfig *)config;
|
||
|
|
|
||
|
|
|
||
|
|
@end
|