1234567891011121314151617181920212223242526 |
- //
- // fileListCell.m
- // shiku_im
- //
- // Created by Apple on 16/6/13.
- // Copyright © 2016年 Reese. All rights reserved.
- //
- #import "FileListCell.h"
- @implementation FileListCell
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- - (void)dealloc {
- // [_headImage release];
- // [_title release];
- // [_subtitle release];
- // [super dealloc];
- }
- @end
|