12345678910111213141516171819202122 |
- //
- // CommentCell.h
- // jiaPeiC
- //
- // Created by apple on 16/3/21.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface CommentCell : UITableViewCell
- {
- UIImageView *headImg;
-
- UILabel *dateLabel;
- UILabel *nameLabel;
- UILabel *contentLabel;
- }
- @property(nonatomic,strong)NSDictionary* dict;
- @end
|