当然,我在这里看到了许多 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];