123456789101112131415161718 |
- //
- // fileListCell.h
- // shiku_im
- //
- // Created by Apple on 16/6/13.
- // Copyright © 2016年 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FileListCell : UITableViewCell
- @property (strong, nonatomic) IBOutlet UIImageView *headImage;
- @property (strong, nonatomic) IBOutlet UILabel *title;
- @property (strong, nonatomic) IBOutlet UILabel *subtitle;
- @end
|