Xcode的新功能。我有一個有黑色輪廓的文本框,但我希望它是白色的。 字體顏色也需要爲白色。 如果可以將要輸入的文本居中。更改邊框線和字體顏色的顏色
感謝
這是到目前爲止我的代碼:
self.poundsTxt=[[UITextField alloc] initWithFrame:CGRectMake(17, 210, 120, 25)];
self.poundsTxt.borderStyle = UITextBorderStyleLine;
self.poundsTxt.font = [UIFont systemFontOfSize:15];
self.poundsTxt.autocorrectionType = UITextAutocorrectionTypeNo;
self.poundsTxt.keyboardType = UIKeyboardTypeNumberPad;
self.poundsTxt.tag=1;
self.poundsTxt.userInteractionEnabled=YES;
self.poundsTxt.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
self.poundsTxt.delegate = self;
self.poundsTxt.returnKeyType=UIReturnKeyDone;
[self.view addSubview:self.poundsTxt];
你談論有一個按鈕,但你的代碼是爲文本字段。有沒有你需要幫助的按鈕? – rmaddy
糟糕,我的意思是textfield,錯字。 –