0

UIAlertViewStyleLoginAndPasswordInputにTextFieldsを追加することは可能ですか?
どうすればいいですか?
または他の可能性がありますか?

4

1 に答える 1

-1

はい、これは可能です。このようにすることができます

 UIAlertView *myAlertView = [[UIAlertView alloc] initWithTitle:@"Your title here!" message:@"this gets covered" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
UITextField *myTextField = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 45.0, 260.0, 25.0)];
[myTextField setBackgroundColor:[UIColor whiteColor]];
[myAlertView addSubview:myTextField];
[myAlertView show];
[myAlertView release];

お役に立てれば。

于 2012-06-06T18:34:34.447 に答える