ExplainCell.h 528 B

1234567891011121314151617
  1. //
  2. // ExplainCell.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 17/4/27.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BingdingStateModel.h"
  10. @interface ExplainCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *explainLabel;
  13. @property (nonatomic, strong) BingdingStateModel * model;
  14. @property (nonatomic, copy) NSMutableAttributedString * attrStr;
  15. + (instancetype)cellWithTableView:(UITableView *)tableView;
  16. @end