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