How to vertically align a UILabel used as a leftView in a UITextField with the textField's text?
问题 I'm using a UILabel as the leftView of a UITextField . The issue is that the textField's text is higher than the label's. This is the code I've used so far 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; I've