问题
Its possible add more TextFields to UIAlertViewStyleLoginAndPasswordInput?
How could i do?
Or there is other possibility?
回答1:
Yes this is possible you can do it like this
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];
Hope this helps.
来源:https://stackoverflow.com/questions/10916847/uialertviewstyleloginandpasswordinput-with-more-textfields