0

我使用 AlertView 来提示用户 ID 和密码。当用户在用户 ID 文本字段或密码文本字段中单击时,会弹出键盘,这很好。但我的问题是,当我尝试使用该键盘输入文本时,文本字段中没有显示字母。IT 发生在 iphone 模拟器中。有什么解决办法。如果有人知道,请通知我。非常感谢。

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"User Login" message:@"Please Enter the Following\n\n\n\n" delegate:self cancelButtonTitle:@"Close" otherButtonTitles:@"Sign In", nil];


//UITextField *txtUserName;
//UITextField *txtPassword;

txtUserName = [[UITextField alloc] initWithFrame:CGRectMake(60, 75, 160, 25)];

txtUserName.tag = 3;
txtUserName.borderStyle = UITextBorderStyleBezel;
txtUserName.textColor = [UIColor whiteColor];
txtUserName.font = [UIFont systemFontOfSize:12.0];
txtUserName.backgroundColor=[UIColor whiteColor];
txtUserName.placeholder = @"User ID";
//txtUserName.userInteractionEnabled=YES;
[alert addSubview:txtUserName]; 


txtPassword = [[UITextField alloc] initWithFrame:CGRectMake(60, 110, 160, 25)];
txtPassword.tag = 3;
txtPassword.borderStyle = UITextBorderStyleBezel;
txtPassword.textColor = [UIColor whiteColor];
txtPassword.font = [UIFont systemFontOfSize:12.0];
txtPassword.backgroundColor=[UIColor whiteColor];
txtPassword.placeholder = @"Password";
[alert addSubview:txtPassword];     

CGAffineTransform myTransform = CGAffineTransformMakeTranslation(0.0, 40.0);
[alert setTransform:myTransform];   
alert.tag=3;
[alert show];
[alert release];
[txtPassword release];
[txtUserName release];
4

5 回答 5

0

每个文本视图的文本颜色是白色的,每个文本视图的背景颜色也是白色的,这就是你看不到文本的原因。删除此代码将解决您的问题。

txtUserName.textColor = [UIColor whiteColor];

txtPassword.textColor = [UIColor whiteColor];
于 2012-08-22T10:43:04.270 回答
0

http://mobile.tutsplus.com/tutorials/iphone/ios-5-sdk-uialertview-text-input-and-validation/

请检查上面的 url 以获得最简单的 uialertview 登录类型。

于 2012-08-22T10:44:20.387 回答
0

尝试这个

[txtUserName setBackgroundColor:[UIColor blackcolor]];

于 2012-08-22T12:10:31.287 回答
0

您的标签背景颜色和文本颜色都是白色的,因此您无法看到文本。我试过使用你的代码,发现你没有使用安全输入作为密码,所以这里是显示字母的代码和密码的安全输入。

.
.
txtUserName.textColor = [UIColor blackColor];
.
.
.
txtPassword.textColor = [UIColor blackColor];
txtPassword.secureTextEntry = YES;
于 2012-08-22T11:08:29.763 回答
0

文本颜色和文本背景颜色是白色的..可能是它的原因。更改颜色并检查。

于 2012-08-22T11:00:42.623 回答