| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // RMTableViewCell.m
- // HeapInspectorExample
- //
- // Created by Christian Menschel on 01.09.14.
- // Copyright (c) 2014 tapwork. All rights reserved.
- //
- #import "HINSPTableViewCell.h"
- NSString *const kTableViewCellIdent = @"kTableViewCellIdent";
- @implementation HINSPTableViewCell
- - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
- {
- self = [super initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:reuseIdentifier];
- if (self) {
- // Initialization code
- self.textLabel.font = [UIFont systemFontOfSize:12];
- self.detailTextLabel.font = [UIFont systemFontOfSize:10];
- }
- return self;
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated
- {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|