PicSymbolTableViewCell.h 612 B

12345678910111213141516171819202122
  1. //
  2. // PicSymbolTableViewCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/1/4.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface PicSymbolTableViewCell : UITableViewCell
  10. @property(nonatomic, retain) UILabel *titleLable;
  11. @property(nonatomic, retain) UIImageView *img1;
  12. @property(nonatomic, retain) UIImageView *img2;
  13. @property(nonatomic, retain) UIImageView *img3;
  14. @property(nonatomic, retain) UIImageView *img4;
  15. @property(nonatomic, retain) UILabel *countLabel;
  16. -(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier;
  17. @end