CommentCell.h 354 B

12345678910111213141516171819202122
  1. //
  2. // CommentCell.h
  3. // jiaPeiC
  4. //
  5. // Created by apple on 16/3/21.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CommentCell : UITableViewCell
  10. {
  11. UIImageView *headImg;
  12. UILabel *dateLabel;
  13. UILabel *nameLabel;
  14. UILabel *contentLabel;
  15. }
  16. @property(nonatomic,strong)NSDictionary* dict;
  17. @end