2

当然,我在这里看到了许多 Core Graphics 问题,所以如果这是一个骗局,请转发给我现有的答案。

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

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

你可以在这张图片中看到发生了什么:

在此处输入图像描述

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

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];
4

1 回答 1

6

用这个:

_textField.leftView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 12, 20)];
    _textField.leftViewMode = UITextFieldViewModeAlways;
    _textField.background = [[UIImage imageNamed:@"image"] stretchableImageWithLeftCapWidth:7 topCapHeight:17];
于 2013-08-14T07:43:10.363 回答