FileListCell.m 478 B

1234567891011121314151617181920212223242526
  1. //
  2. // fileListCell.m
  3. // shiku_im
  4. //
  5. // Created by Apple on 16/6/13.
  6. // Copyright © 2016年 Reese. All rights reserved.
  7. //
  8. #import "FileListCell.h"
  9. @implementation FileListCell
  10. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  11. [super setSelected:selected animated:animated];
  12. // Configure the view for the selected state
  13. }
  14. - (void)dealloc {
  15. // [_headImage release];
  16. // [_title release];
  17. // [_subtitle release];
  18. // [super dealloc];
  19. }
  20. @end