ComListCell.h 355 B

12345678910111213141516171819
  1. //
  2. // ComListCell.h
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/5/31.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ComListCell : UITableViewCell
  10. @property(nonatomic,copy)BlockTypeVo block;
  11. +(ComListCell *)cellForTabelView:(UITableView*)tableView;
  12. - (void)updateWithDic:(NSDictionary *)dic;
  13. @end