它似乎基於我已經得到了,我很迷惑人(以及隨後我自己)的響應。因此,讓我們儘量簡化這個問題,一些 -
我想給所有的TextField在給定的ViewController
如下:
textField.layer.cornerRadius=8.0f;
textField.layer.masksToBounds=YES;
[[textField layer] setBorderColor:[[UIColor colorWithRed:171.0/255.0 green:171.0/255.0 blue:171.0/255.0 alpha:1.0] CGColor]];
textField.layer.borderWidth= 1.0f;
我應該在哪裏實現這一點,怎麼會這樣,它並沒有給我的錯誤層物業(即當我嘗試-(void)viewDidLoad
我得到一個錯誤的每一行指出要做到這一點或後「財產‘層’上ViewController
類型的對象未找到」?
編輯#1 的全斷面子類代碼以幫助確定問題:
@interface InputTextField : UITextField
@end
@implementation InputTextField
- (CGRect)textRectForBounds:(CGRect)bounds {
int margin = 5;
CGRect inset = CGRectMake(bounds.origin.x + margin, bounds.origin.y, bounds.size.width - margin, bounds.size.height);
return inset;
}
- (CGRect)editingRectForBounds:(CGRect)bounds {
int margin = 5;
CGRect inset = CGRectMake(bounds.origin.x + margin, bounds.origin.y, bounds.size.width - margin, bounds.size.height);
return inset;
InputTextField *textField=[[InputTextField alloc]init];
textField.layer.cornerRadius=8.0f;
textField.layer.masksToBounds=YES;
[[textField layer] setBorderColor:[[UIColor colorWithRed:171.0/255.0 green:171.0/255.0 blue:171.0/255.0 alpha:1.0] CGColor]];
textField.layer.borderWidth= 1.0f;
}
@end
原帖
我有一個特定的視圖控制器內改變範圍的文本字段的邊框風格和色彩的問題。我在一個視圖中有一堆文本字段,我想調整它。他們都被賦予了自定義類「InputTextField」。然而在這個線程提出的解決方案:UITextField border color不能解決我的問題。
下面是樣式和顏色我想達成的目標:
textField.layer.cornerRadius=8.0f;
textField.layer.masksToBounds=YES;
[[textField layer] setBorderColor:[[UIColor colorWithRed:171.0/255.0 green:171.0/255.0 blue:171.0/255.0 alpha:1.0] CGColor]];
textField.layer.borderWidth= 1.0f;
我也進口QuartzCore/QuartzCore.h
。我想設置這個,所以我的應用程序中的每個TextField都會出現自定義類InputTextField
這個背景。在這一點上,每當我在應用程序中運行它時,這些字段都將採用我在Storyboards中設置的背景值(當前無邊框)。
感謝您的協助!
你把這個代碼在子類? – Jkmn
你在哪裏調用子類中的這段代碼?如果你粘貼完整的子類代碼,它會更容易弄清楚。 –
@Jkmn - 是的,我已經將代碼添加到子類(在我的.m文件的界面設置中)。檢查完整選擇代碼的問題。 – Slider257