NewsTableViewCell.h 414 B

123456789101112131415161718
  1. //
  2. // NewsTableViewCell.h
  3. // Apex Mobile
  4. //
  5. // Created by Ray on 14-4-21.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface NewsTableViewCell : UITableViewCell
  10. @property (strong, nonatomic) IBOutlet UILabel *title;
  11. @property (strong, nonatomic) IBOutlet UIImageView *image;
  12. @property (strong, nonatomic) IBOutlet UILabel *content;
  13. @end