gpt4 book ai didi

ios - 如何将 UITextField 中用作 leftView 的 UILabel 与文本字段的文本垂直对齐?

转载 作者:可可西里 更新时间:2023-11-01 05:37:59 25 4
gpt4 key购买 nike

我正在使用 UILabel 作为 UITextFieldleftView。问题是文本字段的文本高于标签的文本。

这是我目前使用的代码

UILabel *startsWith = [[UILabel alloc] init];
startsWith.font = [UIFont systemFontOfSize:14];
startsWith.textColor = [UIColor blackColor];
startsWith.backgroundColor = [UIColor clearColor];
startsWith.text = @"Text";
[startsWith sizeToFit];
self.textField.leftViewMode = UITextFieldViewModeAlways;
self.textField.leftView = startsWith;

我试过稍微改变标签的框架,但没用...

如何对齐两个文本?

最佳答案

您可以创建一个容器 View ,将 UILabel 向上放置 1px。

    UIView * v = [[UIView alloc] init];
v.backgroundColor = [UIColor clearColor];

UILabel *startsWith = [[UILabel alloc] init];
startsWith.font = self.textfield.font;
startsWith.textAlignment = self.textfield.textAlignment;
startsWith.textColor = [UIColor blackColor];
startsWith.backgroundColor = [UIColor clearColor];
startsWith.text = @"Text";
[startsWith sizeToFit];

startsWith.frame = CGRectOffset(startsWith.frame, 0, -1);
v.frame = startsWith.frame;
[v addSubview:startsWith];
self.textfield.leftViewMode = UITextFieldViewModeAlways;
self.textfield.leftView = v;

关于ios - 如何将 UITextField 中用作 leftView 的 UILabel 与文本字段的文本垂直对齐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11332782/

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