我正在使用 aUILabel
作为leftView
a 的UITextField
。问题是 textField 的文本高于标签的文本。
这是我到目前为止使用的代码
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;
我已经尝试稍微改变标签的框架,但它没有用......
如何对齐两个文本?