HINSPTableViewCell.m 857 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // RMTableViewCell.m
  3. // HeapInspectorExample
  4. //
  5. // Created by Christian Menschel on 01.09.14.
  6. // Copyright (c) 2014 tapwork. All rights reserved.
  7. //
  8. #import "HINSPTableViewCell.h"
  9. NSString *const kTableViewCellIdent = @"kTableViewCellIdent";
  10. @implementation HINSPTableViewCell
  11. - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
  12. {
  13. self = [super initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:reuseIdentifier];
  14. if (self) {
  15. // Initialization code
  16. self.textLabel.font = [UIFont systemFontOfSize:12];
  17. self.detailTextLabel.font = [UIFont systemFontOfSize:10];
  18. }
  19. return self;
  20. }
  21. - (void)setSelected:(BOOL)selected animated:(BOOL)animated
  22. {
  23. [super setSelected:selected animated:animated];
  24. // Configure the view for the selected state
  25. }
  26. @end