12345678910111213141516171819 |
- //
- // FaqCell.h
- // jiaPei
- //
- // Created by apple on 15/12/10.
- // Copyright © 2015年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FaqCell : UITableViewCell
- @property (nonatomic, strong) NSDictionary *model;
- @property (nonatomic, strong) NSDictionary *suggestModel;
- +(FaqCell*)cellForTableView:(UITableView*)tableView;
- @end
|