gpt4 book ai didi

ios - 文本字段一侧的 UITextfield borderColor 和宽度

转载 作者:可可西里 更新时间:2023-11-01 04:35:29 26 4
gpt4 key购买 nike

我有一个像这样的文本字段设置:

textField.borderStyle = UITextBorderStyleLine;
textField.layer.borderColor = [[UIColor greenColor] CGColor];
textField.layer.borderWidth= 10.0f;'

但是有没有可能在左侧有一个更大的边框并且它是不同的颜色?或者我必须用我想要的颜色和位置放置一个 drawRect 吗?

最佳答案

尝试使用此代码可能会帮助您像 Bellow 一样在自定义 TextFiled 的左侧添加边框:-

- (void)viewDidLoad
{

[super viewDidLoad];
UIView *bottomBorder = [[UIView alloc]
initWithFrame:CGRectMake(0,0,4,txtField.frame.size.height)];
bottomBorder.backgroundColor = [UIColor redColor];
[txtField addSubview:bottomBorder];

}

此 Bellow 委托(delegate)代码用于在文本字段中的一些空格后开始

- (void)textFieldDidBeginEditing:(UITextField *)textField {
UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 5, 20)];
textField.leftView = paddingView;
textField.leftViewMode = UITextFieldViewModeAlways;
}

输出看起来像这样:-

enter image description here

关于ios - 文本字段一侧的 UITextfield borderColor 和宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18928872/

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