Blame client/iOS/Views/EditTextTableViewCell.m

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