我刚刚发现了一个奇怪的问题,当我尝试在 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];
请建议我如何纠正这个问题。谢谢。