// // symbolCell.h // jiaPei // // Created by apple on 16/1/5. // Copyright © 2016年 JCZ. All rights reserved. // #import @interface symbolCell : UITableViewCell @property (nonatomic, retain) UIImageView *image; @property (nonatomic, retain) UILabel *titleLabel; @property (nonatomic, retain) UILabel *countLabel; -(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier; @end