| 123456789101112131415161718 |
- //
- // NewsTableViewCell.h
- // Apex Mobile
- //
- // Created by Ray on 14-4-21.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface NewsTableViewCell : UITableViewCell
- @property (strong, nonatomic) IBOutlet UILabel *title;
- @property (strong, nonatomic) IBOutlet UIImageView *image;
- @property (strong, nonatomic) IBOutlet UILabel *content;
- @end
|