Blame client/iOS/Views/EditButtonTableViewCell.m

Packit Service fa4841
/*
Packit Service fa4841
 Custom table cell with a button
Packit Service bb5c11
 
Packit Service fa4841
 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
Packit Service bb5c11
 
Packit Service bb5c11
 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. 
Packit Service bb5c11
 If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
Packit Service fa4841
 */
Packit Service fa4841
Packit Service fa4841
#import "EditButtonTableViewCell.h"
Packit Service fa4841
Packit Service fa4841
@implementation EditButtonTableViewCell
Packit Service fa4841
Packit Service fa4841
@synthesize label = _label, button = _button;
Packit Service fa4841
Packit Service fa4841
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
Packit Service fa4841
{
Packit Service bb5c11
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
Packit Service bb5c11
    if (self) {
Packit Service bb5c11
        // Initialization code
Packit Service bb5c11
    }
Packit Service bb5c11
    return self;
Packit Service fa4841
}
Packit Service fa4841
Packit Service fa4841
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
Packit Service fa4841
{
Packit Service bb5c11
    [super setSelected:selected animated:animated];
Packit Service fa4841
Packit Service bb5c11
    // Configure the view for the selected state
Packit Service fa4841
}
Packit Service fa4841
Packit Service fa4841
@end