UIAlertView登录和密码输入有三个按钮

时间:2012-12-05 09:09:32

标签: ios uialertview

我刚发现一个奇怪的问题,当我尝试在UIAlertView中使用三个按钮时,视图显示很奇怪,正如您在此屏幕截图中看到的那样:

UIAlertView

以下是代码:

UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"Login" message:nil delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Login",@"Forget Password", nil];

[alert setAlertViewStyle:UIAlertViewStyleLoginAndPasswordInput];
UITextField *place=[alert textFieldAtIndex:0];
place.placeholder=@"Email";
[alert show];
[alert release];

请建议我如何纠正这个问题。感谢。

0 个答案:

没有答案