1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
UITextField * username = [ [ UITextField alloc ] initWithFrame:CGRectMake( 200, 10.0f, 100.0f, 32.0f ) ]; username.tag = CREATEUSER_UITEXTFIELD_USERNAME; username.borderStyle = UITextBorderStyleRoundedRect; username.textColor = [UIColor blackColor]; username.font = [UIFont systemFontOfSize:20.0]; username.keyboardType = UIKeyboardTypeDecimalPad; username.returnKeyType = UIReturnKeyDone; username.clearButtonMode = UITextFieldViewModeWhileEditing; username.delegate = self; [username setBackgroundColor:[UIColor blueColor]]; [username setTextAlignment:NSTextAlignmentCenter]; //To make the border look very close to a UITextField [username.layer setBorderColor:[[[UIColor grayColor] colorWithAlphaComponent:0.5] CGColor]]; [username.layer setBorderWidth:1.0]; [username.layer setCornerRadius:18.0f]; username.placeholder = @"BBT"; username.textAlignment = NSTextAlignmentCenter; username.autocapitalizationType = UITextAutocapitalizationTypeNone; |