2010-07-16 141 views
44

有没有办法在UIControlContentVerticalAlignmentCenterUIControlContentVerticalAlignmentBottom之间的中途将UITextField中的文本垂直对齐,还是我必须使用其中的一种?UITextField垂直对齐

+0

http://stackoverflow.com/questions/2694411/text-inset-for-uitextfield – titaniumdecoy 2011-03-08 23:49:23

+1

的可能的复制@titaniumdecoy它不是。 – 2012-01-15 09:51:11

回答

4

你应该子类的UITextField,并覆盖下列方法:

- (CGRect) textRectForBounds: (CGRect) bounds 
{ 
    CGRect origValue = [super textRectForBounds: bounds]; 

    /* Just a sample offset */ 
    return CGRectOffset(origValue, 0.0f, 4.0f); 
} 

- (CGRect) editingRectForBounds: (CGRect) bounds 
{ 
    CGRect origValue = [super textRectForBounds: bounds]; 

    /* Just a sample offset */  
    return CGRectOffset(origValue, 0.0f, 4.0f); 
}