blob: 9e0b17a7fda982edead8ace481d4c114d12fd718 [file] [log] [blame] [edit]
//
// EmployeeTableViewCell.m
// StoreMadApp
//
// Created by Andrew Smith on 7/8/13.
// Copyright (c) 2013 Burgess. All rights reserved.
//
#import "EmployeeTableViewCell.h"
@implementation EmployeeTableViewCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
}
return self;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end