我当然会在这里看到许多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];
最佳答案
用这个:
_textField.leftView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 12, 20)];
_textField.leftViewMode = UITextFieldViewModeAlways;
_textField.background = [[UIImage imageNamed:@"image"] stretchableImageWithLeftCapWidth:7 topCapHeight:17];
关于ios - 如何为UITextField设置边框填充?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18225791/