- (instancetype)init {
......
_textFieldNode =
[[ASDisplayNode alloc] initWithViewBlock:^UIView *_Nonnull {
return [[UITextField alloc] init];
}];
_textFieldNode.backgroundColor = [UIColor clearColor];
......
}
- (void)didLoad {
[super didLoad];
UITextField *textField = (UITextField *)_textFieldNode.view;
textField.layer.borderColor = [UIColor colorWithRGB:KYTLineColor].CGColor;
textField.layer.borderWidth = 1.0;
textField.textAlignment = NSTextAlignmentCenter;
textField.returnKeyType = UIReturnKeyDone;
textField.enabled = NO;
}