gpt4 book ai didi

iphone - 缩进 UITextField 中的文本

转载 作者:IT老高 更新时间:2023-10-28 11:24:06 26 4
gpt4 key购买 nike

我的问题和标题一样简单,但这里还有一点:

我有一个 UITextField,我在上面设置了背景图像。问题是文本紧贴它的边缘,这也是图像的边缘。我希望我的文本字段看起来像 Apple 的,在背景图像和文本开始位置之间有一点水平空间。

最佳答案

这是我在不做任何子类的情况下找到的最快方法:

UIView *spacerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 10, 10)];
[textfield setLeftViewMode:UITextFieldViewModeAlways];
[textfield setLeftView:spacerView];

在 swift 中:

let spacerView = UIView(frame:CGRect(x:0, y:0, width:10, height:10))
textField.leftViewMode = UITextFieldViewMode.Always
textField.leftView = spacerView

swift 5:

let spacerView = UIView(frame:CGRect(x:0, y:0, width:10, height:10))
textField.leftViewMode = .always
textField.leftView = spacerView

关于iphone - 缩进 UITextField 中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7565645/

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