美文网首页
iOS UILabel UITextField字体加粗

iOS UILabel UITextField字体加粗

作者: Lee坚武 | 来源:发表于2021-08-02 14:14 被阅读0次

iOS UILabel UITextField字体加粗

     _hAccountInputh = [[UITextField alloc ]initWithFrame:CGRectMake(13+19+offetX, 80.5-inputOffetY, 130, 35)];
     [_hAccountInputh setFont:[UIFont fontWithName:[NSString stringWithFormat:@"%@%@%@",@"Helvet",@"ica",@"-Bold"] size:13.0]];
     NSAttributedString *placeholderArr = [[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"%@%@%@",@"请输入",@"账",@"号"] attributes:
     @{NSForegroundColorAttributeName:InputSignalTradeEditionColoringAbnormal,
     NSFontAttributeName:_hAccountInputh.font
     }];
     _hAccountInputh.textColor = InputSignalTradeEditionColoringAbnormal;
     _hAccountInputh.attributedPlaceholder = placeholderArr;
     _hAccountInputh.returnKeyType = UIReturnKeyDone;
     _hAccountInputh.autocorrectionType = UITextAutocorrectionTypeNo;
     _hAccountInputh.keyboardType = UIKeyboardTypeDefault;
     _hAccountInputh.delegate   = self;
     [self addSubview:_hAccountInputh];

相关文章

网友评论

      本文标题:iOS UILabel UITextField字体加粗

      本文链接:https://www.haomeiwen.com/subject/ttxjvltx.html