github.com/slspeek/camlistore_namedsearch@v0.0.0-20140519202248-ed6f70f7721a/clients/ios-objc/photobackup/UploadTaskCell.m (about) 1 // 2 // UploadTaskCell.m 3 // photobackup 4 // 5 // Created by Nick O'Neill on 1/6/14. 6 // Copyright (c) 2014 Nick O'Neill. All rights reserved. 7 // 8 9 #import "UploadTaskCell.h" 10 11 @implementation UploadTaskCell 12 13 - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString*)reuseIdentifier 14 { 15 self = [super initWithStyle:style 16 reuseIdentifier:reuseIdentifier]; 17 if (self) { 18 // Initialization code 19 } 20 return self; 21 } 22 23 - (void)setSelected:(BOOL)selected animated:(BOOL)animated 24 { 25 [super setSelected:selected 26 animated:animated]; 27 28 // Configure the view for the selected state 29 } 30 31 @end