将占位符文本居中在UITextField的子类中

时间:2012-07-18 10:35:27

标签: iphone ios5 xcode4 uitextfield

首先,我需要设置占位符文本颜色,因此我将UITextfield子类化为几个堆栈溢出帖子中显示的内容。这很好用。以下是此示例帖子:How do I subclass UITextField and override drawPlaceholderInRect to change Placeholder color

但是,当我尝试使用searchNameField.textAlignment = UITextAlignmentCenter;时,它不再是占位符的中心。输入文本仍然处于中心位置。

那么,假设由于子类化而使居中不起作用,我必须添加到我的UITextField子类以使占位符文本居中?

由于

修改

这是我用来解决这个问题的代码。它放在我的UITextField的子类中。

- (CGRect)placeholderRectForBounds:(CGRect)bounds 
{
    CGSize size = [[self placeholder] sizeWithFont:[UIFont fontWithName:@"Arial" size:placeholdTextSize]];

    return CGRectMake( (bounds.size.width - size.width)/2 , bounds.origin.y , bounds.size.width , bounds.size.height);
}

请注意,placeholdTextSize是我在初始化期间设置的属性。

3 个答案:

答案 0 :(得分:5)

你去哥们

继承UITextField将完成工作:

// CustomTextField.h
@interface CustomTextField : UITextField {
}
@end

覆盖方法:

@implementation
- (CGRect)placeholderRectForBounds:(CGRect)bounds {
    return CGRectMake(x,y,width,height);//Return your desired x,y position and width,height
}

- (void)drawPlaceholderInRect:(CGRect)rect {
    //draw place holder.
 [[self placeholder] drawInRect:rect withFont:[UIFont systemFontOfSize:12]];

}
@end

答案 1 :(得分:3)

我认为这将有效(经过测试)

- (void) drawPlaceholderInRect:(CGRect)rect {

      [[UIColor redColor] setFill];
      [self.placeholder drawInRect:rect
                          withFont:self.font
                     lineBreakMode:UILineBreakModeTailTruncation
                         alignment:self.textAlignment];
    }

https://github.com/mschulkind/cordova-true-native-ios/blob/master/Classes/UITextFieldPlugin.m

答案 2 :(得分:2)

您可以在UITextfield子类

中执行此操作
- (void)drawPlaceholderInRect:(CGRect)rect {

[[UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:0.8] setFill];

[[self placeholder] drawInRect:rect withFont:[UIFont boldSystemFontOfSize:16.0] lineBreakMode:UILineBreakModeTailTruncation alignment:NSTextAlignmentCenter];

}