mirror of https://github.com/perkeep/perkeep.git
32 lines
643 B
Objective-C
32 lines
643 B
Objective-C
//
|
|
// UploadTaskCell.m
|
|
// photobackup
|
|
//
|
|
// Created by Nick O'Neill on 1/6/14.
|
|
// Copyright (c) 2014 Nick O'Neill. All rights reserved.
|
|
//
|
|
|
|
#import "UploadTaskCell.h"
|
|
|
|
@implementation UploadTaskCell
|
|
|
|
- (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
|