mirror of https://github.com/perkeep/perkeep.git
30 lines
614 B
Mathematica
30 lines
614 B
Mathematica
|
//
|
||
|
// 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
|