2014-01-05 02:50:35 +00:00
|
|
|
//
|
|
|
|
// UploadStatusCell.m
|
|
|
|
// photobackup
|
|
|
|
//
|
|
|
|
// Created by Nick O'Neill on 1/6/14.
|
|
|
|
// Copyright (c) 2014 Nick O'Neill. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "UploadStatusCell.h"
|
|
|
|
|
|
|
|
@implementation UploadStatusCell
|
|
|
|
|
2014-01-16 21:29:55 +00:00
|
|
|
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString*)reuseIdentifier
|
2014-01-05 02:50:35 +00:00
|
|
|
{
|
2014-01-16 21:29:55 +00:00
|
|
|
self = [super initWithStyle:style
|
|
|
|
reuseIdentifier:reuseIdentifier];
|
2014-01-05 02:50:35 +00:00
|
|
|
if (self) {
|
|
|
|
// Initialization code
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
|
|
|
|
{
|
2014-01-16 21:29:55 +00:00
|
|
|
[super setSelected:selected
|
|
|
|
animated:animated];
|
2014-01-05 02:50:35 +00:00
|
|
|
|
|
|
|
// Configure the view for the selected state
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|