gpt4 book ai didi

ios - 如何实现这种风格的 UITextField

转载 作者:行者123 更新时间:2023-11-29 12:19:22 26 4
gpt4 key购买 nike

我有一个 UITextField 让用户键入 4 个从短信返回的数字。我已经正确设置了 UITextField 样式和背景图像,但不知道如何把这四个数字排列好,我要的是这样的: enter image description here

但是结果是这样的:

enter image description here

这是我对 UITextField 的设置。 enter image description here

如何在键盘输入时很好地分隔数字,有帮助吗?

最佳答案

我建议使用 NSKernAttributeName 属性:

NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:@"1234"];
[attributedString addAttribute:NSKernAttributeName value:@(30) range:NSMakeRange(0, 4)];
self.textField.attributedText = attributedString;

enter image description here

关于ios - 如何实现这种风格的 UITextField,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31076873/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com