UIAlertViewStyleLoginAndPasswordInput包含更多TextFields?

时间:2012-06-06 14:59:37

标签: ios objective-c cocoa-touch ios5 uialertview

可以为UIAlertView Style LoginAndPasswordInput添加更多文本字段?
我怎么办? 还是有其他可能性?

1 个答案:

答案 0 :(得分:-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];

希望这有帮助。