mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
80 lines
2.1 KiB
Objective-C
80 lines
2.1 KiB
Objective-C
#import "TGPasswordInputItemView.h"
|
|
|
|
#import "TGFont.h"
|
|
#import "TGTextField.h"
|
|
|
|
@interface TGPasswordInputItemView () <UITextFieldDelegate>
|
|
{
|
|
TGTextField *_textField;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation TGPasswordInputItemView
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame
|
|
{
|
|
self = [super initWithFrame:frame];
|
|
if (self != nil)
|
|
{
|
|
_textField = [[TGTextField alloc] init];
|
|
_textField.delegate = self;
|
|
_textField.textColor = [UIColor blackColor];
|
|
_textField.font = TGSystemFontOfSize(18.0f);
|
|
_textField.placeholderFont = _textField.font;
|
|
_textField.placeholderColor = UIColorRGB(0xbfbfbf);
|
|
_textField.autocorrectionType = UITextAutocorrectionTypeNo;
|
|
_textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
|
|
_textField.spellCheckingType = UITextSpellCheckingTypeNo;
|
|
_textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
|
|
_textField.backgroundColor = [UIColor clearColor];
|
|
_textField.leftInset = 15.0f;
|
|
_textField.rightInset = 15.0f;
|
|
_textField.secureTextEntry = true;
|
|
[self.contentView addSubview:_textField];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)setPlaceholder:(NSString *)placeholder
|
|
{
|
|
_textField.placeholder = placeholder;
|
|
}
|
|
|
|
- (void)setPassword:(NSString *)password
|
|
{
|
|
_textField.text = password;
|
|
}
|
|
|
|
- (void)layoutSubviews
|
|
{
|
|
[super layoutSubviews];
|
|
|
|
_textField.frame = CGRectMake(0.0f, 4.0f, self.contentView.frame.size.width, self.contentView.frame.size.height - 8);
|
|
}
|
|
|
|
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
|
|
{
|
|
NSString *text = [textField.text stringByReplacingCharactersInRange:range withString:string];
|
|
|
|
if (_passwordChanged)
|
|
_passwordChanged(string.length == 0 ? @"" : text);
|
|
|
|
return true;
|
|
}
|
|
|
|
- (BOOL)textFieldShouldClear:(UITextField *)__unused textField
|
|
{
|
|
if (_passwordChanged)
|
|
_passwordChanged(@"");
|
|
|
|
return true;
|
|
}
|
|
|
|
- (void)makeTextFieldFirstResponder
|
|
{
|
|
[_textField becomeFirstResponder];
|
|
}
|
|
|
|
@end
|