阿拉伯语适配
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
///显示昵称
|
||||
@property (nonatomic,strong) UILabel *nameLabel;
|
||||
///输入框
|
||||
@property (nonatomic,strong) UITextField *textField;
|
||||
@property (nonatomic,strong) MSBaseTextField *textField;
|
||||
///更新
|
||||
@property (nonatomic,strong) UIButton *refreshButton;
|
||||
///x性别的容器
|
||||
@@ -57,7 +57,7 @@
|
||||
///邀请码的容器
|
||||
@property (nonatomic,strong) UIView *codeContainView;
|
||||
///邀请码输入框
|
||||
@property (nonatomic,strong) UITextField *codeTextField;
|
||||
@property (nonatomic,strong) MSBaseTextField *codeTextField;
|
||||
|
||||
|
||||
///第三方的用户信息
|
||||
@@ -382,9 +382,9 @@
|
||||
return _nameLabel;
|
||||
}
|
||||
|
||||
- (UITextField *)textField {
|
||||
- (MSBaseTextField *)textField {
|
||||
if (!_textField) {
|
||||
_textField = [[UITextField alloc] init];
|
||||
_textField = [[MSBaseTextField alloc] init];
|
||||
_textField.textColor = UIColorFromRGB(0x1F1B4F);
|
||||
_textField.font = kFontMedium(16);
|
||||
_textField.placeholder = YMLocalizedString(@"LoginFullInfoViewController3");
|
||||
@@ -451,9 +451,9 @@
|
||||
return _codeContainView;
|
||||
}
|
||||
|
||||
- (UITextField *)codeTextField {
|
||||
- (MSBaseTextField *)codeTextField {
|
||||
if (!_codeTextField) {
|
||||
_codeTextField = [[UITextField alloc] init];
|
||||
_codeTextField = [[MSBaseTextField alloc] init];
|
||||
_codeTextField.textColor = UIColorFromRGB(0x1F1B4F);
|
||||
_codeTextField.font = kFontMedium(14);
|
||||
_codeTextField.borderStyle = UITextBorderStyleNone;
|
||||
|
Reference in New Issue
Block a user