如何为UITextField创建边框填充?

时间:2013-08-14 07:37:23

标签: ios core-graphics

我当然在这里看到很多核心图形问题,所以如果这是一个骗局,请转发我现有的答案。

在滚动视图中,我有一些标签和文本字段。文本字段具有边框。

我似乎无法弄清楚如何在边框和文本之间进行填充。

您可以看到此图片中正在发生的事情:

enter image description here

这是执行此操作的代码段:

roughDate = [[UITextField alloc] init] ;
        CGRect tempFrame = CGRectMake(125, 90, 300, 40);
        UIEdgeInsets insets = UIEdgeInsetsMake(4, 4, 4, 4);     
        CGRect roughDateFrame = UIEdgeInsetsInsetRect(tempFrame, insets);
        NSLog(@"%@", NSStringFromCGRect(roughDateFrame));
        [[roughDate layer] setBorderColor:[[UIColor grayColor] CGColor]];
        [[roughDate layer] setBorderWidth:1.0];
        [[roughDate layer] setCornerRadius:5];      
        roughDate.frame = roughDateFrame;
        [subview addSubview:roughDate];

1 个答案:

答案 0 :(得分:6)

使用此:

_textField.leftView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 12, 20)];
    _textField.leftViewMode = UITextFieldViewModeAlways;
    _textField.background = [[UIImage imageNamed:@"image"] stretchableImageWithLeftCapWidth:7 topCapHeight:17];