原因:
想做个这样的东西:
解决:
找了半天(其实只有10分钟)只有placeholder,
于是笨办法,利用leftView,写一个自己的TextField
@interface TitleTextField : UITextField
然后顺理成章
- (void) title:(NSString*)title
{
UILabel* label = [[UILabel alloc] initWithFrame:CGRectZero];
label.text = title;
label.font = [UIFont systemFontOfSize:16];
[label sizeToFit];
[label setWidth:label.width+20];
self.leftView = label;
self.leftViewMode = UITextFieldViewModeAlways;
}
- (CGRect) leftViewRectForBounds:(CGRect)bounds {
CGRect textRect = [super leftViewRectForBounds:bounds];
textRect.origin.x += 10;
return textRect;
}
要说的话:
直觉应该有更clean的方法,但我太懒了。
网友评论