12345678910111213141516171819202122232425 |
- //
- // newDetailVC.h
- // jiaPei
- //
- // Created by apple on 16/1/19.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface newDetailVC : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *headImg;
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *sourceLabel;
- @property (weak, nonatomic) IBOutlet UILabel *readCount;
- @property (weak, nonatomic) IBOutlet UILabel *contentLabel;
- @end
|