github.com/olivere/camlistore@v0.0.0-20140121221811-1b7ac2da0199/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 reuseIdentifier:reuseIdentifier];
    16      if (self) {
    17          // Initialization code
    18      }
    19      return self;
    20  }
    21  
    22  - (void)setSelected:(BOOL)selected animated:(BOOL)animated
    23  {
    24      [super setSelected:selected animated:animated];
    25  
    26      // Configure the view for the selected state
    27  }
    28  
    29  @end