这是我的问题:看第一个字符,没有显示k
的左下角。
我试过这个:
- (CGRect)textRectForBounds:(CGRect)bounds{
return CGRectInset( bounds , 20 , 20 );
}
- (CGRect)editingRectForBounds:(CGRect)bounds {
return CGRectInset( bounds , 20 , 20 );
}
还有这个:
UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(10, 10, 10, 20)] ;
myText.leftView = paddingView;
myText.leftViewMode = UITextFieldViewModeAlways;
但没有机会!