FaqCell.h 353 B

12345678910111213141516171819
  1. //
  2. // FaqCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 15/12/10.
  6. // Copyright © 2015年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface FaqCell : UITableViewCell
  10. @property (nonatomic, strong) NSDictionary *model;
  11. @property (nonatomic, strong) NSDictionary *suggestModel;
  12. +(FaqCell*)cellForTableView:(UITableView*)tableView;
  13. @end