Blame client/iOS/Views/EditSecretTextTableViewCell.h

Packit Service fa4841
/*
Packit Service fa4841
 Custom table cell with secret edit text field
Packit Service fa4841
Packit Service fa4841
 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
Packit Service fa4841
Packit Service fa4841
 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
Packit Service fa4841
 If a copy of the MPL was not distributed with this file, You can obtain one at
Packit Service fa4841
 http://mozilla.org/MPL/2.0/.
Packit Service fa4841
 */
Packit Service fa4841
Packit Service fa4841
#import <UIKit/UIKit.h>
Packit Service fa4841
Packit Service fa4841
@interface EditSecretTextTableViewCell : UITableViewCell
Packit Service fa4841
{
Packit Service fa4841
	IBOutlet UILabel *_label;
Packit Service fa4841
	IBOutlet UITextField *_textfield;
Packit Service fa4841
	IBOutlet UIButton *_unhide_button;
Packit Service fa4841
}
Packit Service fa4841
Packit Service fa4841
@property(retain, nonatomic) UILabel *label;
Packit Service fa4841
@property(retain, nonatomic) UITextField *textfield;
Packit Service fa4841
Packit Service fa4841
- (void)setEnabled:(BOOL)enabled;
Packit Service fa4841
Packit Service fa4841
@end