12345678910111213141516171819 |
- //
- // ComListCell.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/5/31.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface ComListCell : UITableViewCell
- @property(nonatomic,copy)BlockTypeVo block;
- +(ComListCell *)cellForTabelView:(UITableView*)tableView;
- - (void)updateWithDic:(NSDictionary *)dic;
- @end
|